/* print.css */

body {
  margin: 0;
  color: #000;
  background-color: #fff;
  /* font-size: 0.85em; */
}

h1, .h1{
  font-size: 1em;
}
.logo {
  width: 75px;
  height: 75px;
  margin: 0 ;
}

.titre-container {
  display: grid;
  /* grid-template-columns:  5vw 90vw 5vw; */
  align-items: center;
  width: 100%;
  height: 100%;
 justify-items: center;
  grid-template-areas:
    ". logo-container . ";
}

.match-container {
  width: 95vw !important; /* Prend presque toute la largeur */
  min-height: 5vh !important; /* Augmente légèrement la hauteur */
  grid-template-columns: auto 1fr !important;
  gap: 0px !important; /* Espace réduit */
  border-width: 1px;
  border-style: solid;
  box-shadow: none;
  border-color: black;
}

.player-name{
  font-size: 1em;
}
.player-age{
  font-size: 1em;
}
.player-ranking{
  font-size: 1em;
}
.player-club{
  font-size: 0.85em;
}
.match-court{
  font-size: 1em;
  font-weight: bold;
  background: none;
}