@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css");

/* Import des polices BNP Paribas */
@font-face {
  font-family: 'BNP Sans';
  src: url('fonts/bnpp-sans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BNP Sans';
  src: url('fonts/bnpp-sans-bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'BNP Sans';
  src: url('fonts/bnpp-sans-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'BNP Sans';
  src: url('fonts/bnpp-sans-extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

body {
  position: relative;
  min-height: 100vh;
  background: #3a373e;
  font-family: "BNP Sans", "Segoe UI", Arial, sans-serif;
}

.groupe-card {
  background: #8b0000;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px #0002;
  margin: 16px;
}
.groupe-card .card-header {
  font-weight: bold;
  font-size: 1.3rem;
  background: #600;
  border-radius: 16px 16px 0 0;
}
.list-group-item {
  background: #b22222;
  color: #fff;
  font-weight: 500;
  border: none;
  margin-bottom: 6px;
  cursor: grab;
}
.list-group-item img {
  width: 28px;
  margin-right: 8px;
  border-radius: 3px;
}
.save-group {
  width: 100%;
}
.points-badge {
  background: #28a745;
  color: #fff;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 1rem;
  margin-left: 8px;
}

p {
  color: white;
}

.hauteur {
  height: 90vh;
}

label {
  color: white;
}

.card {
  width: 100%;
  background-color: #ffffff00;
  border-radius: 1rem;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05);
  border: #ffffff;
  display: block;
  margin: auto;
  border-radius: 16px !important;
  border: none !important;
}
.navbar {
  background: #1e293b;
  z-index: 99;
}
.navbar-brand,
.nav-link,
.navbar-text {
  /* color: #fff !important; */
}
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
}
.match-vs-box {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem 1rem 1rem;
  width: 100%;
  margin: 0 auto 1.5rem auto;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #e0e0e0;
  position: relative;
}
.match-vs-box:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px) scale(1.01);
  border-color: #b71c1c;
}
.flag-img {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  border: 3px solid #fff;
  background: #f8fafc;
  transition: 0.2s;
}
.flag-img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 4px 16px rgba(183, 28, 28, 0.18);
  border-color: #b71c1c;
}
.vs-text {
  color: #b71c1c;
  text-shadow: 1px 1px 0 #fff, 2px 2px 4px #b71c1c33;
  font-size: 2.7rem;
  font-weight: bold;
  margin: 0 1.5rem;
}
.team .fw-bold {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}
.match-date {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 30px;
}
.predictionsForm {
  margin-bottom: 2.5rem !important;
}
.predictionsForm input[type="number"] {
  min-width: 120px;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 0.7rem;
  border: 2px solid #e0e0e0;
  transition: border-color 0.2s;
  padding: 0px;
}
.predictionsForm input[type="number"]:focus {
  border-color: #b71c1c;
  outline: none;
}
.save-prediction {
  font-size: 1rem;
  border-radius: 0.7rem;
  padding: 0.5rem 1.2rem;
}
.badge.bg-secondary {
  font-size: 1rem;
  border-radius: 0.7rem;
  padding: 5px;
}

/* Masquer les flèches des champs input[type=number] (tous navigateurs) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* Tablette : images en haut et en bas (comme mobile) */
@media (min-width: 768px) and (max-width: 1023.98px) {
  body::before,
  body::after {
    display: none !important; /* Masquer les images gauche/droite */
  }
  
  body {
    padding-top: 110px;
    padding-bottom: 90px;
  }
  
  .header-img-mobile {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: url("./img/header_top.png") no-repeat center top;
    background-size: cover;
    z-index: 10;
    display: block !important;
  }
  
  .footer-img-mobile {
    display: none !important; /* Masquer le footer sur tablette */
  }
  
  .container,
  .card,
  .d-flex,
  .row {
    position: relative;
    z-index: 0;
  }
  
  .container.mt-4 {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Desktop : images sur les côtés */
@media (min-width: 1024px) {
  body::before,
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }
  body::before {
    left: 0;
    background-image: url("./img/left.png"), url("./img/left_2.png");
    background-position: top left, bottom left;
    background-size: cover;
  }
  body::after {
    right: 0;
    background-image: url("./img/right.png"), url("./img/right_2.png");
    background-position: top right, bottom right;
    background-size: cover;
    z-index: -1;
  }
  .container,
  .card,
  .d-flex,
  .row {
    position: relative;
    z-index: 0;
  }
  .container.mt-4 {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Masquer le header-img-mobile quand le menu offcanvas est ouvert */
body:has(.offcanvas.show) .header-img-mobile,
body.offcanvas-open .header-img-mobile {
  display: none !important;
}

/* Gap-2 pour mobile et desktop */
.gap-2 {
  gap: 0rem !important;
}

/* Mobile : header et footer images */
@media (max-width: 767.98px) {

  .mt-4 {
    margin-top: -2rem !important;
  }
  
  body {
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .header-img-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100px;
    background: url("./img/header_top.png") no-repeat center top;
    background-size: cover;
    z-index: 10;
  }
  .footer-img-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    /* background: url('./img/footer.png') no-repeat center bottom; */
    background-size: cover;
    z-index: 10;
    display: none;
  }
  .card {
    width: 100% !important;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .mobile-phase-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 2px;
    background: #23232b;
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .btn-phase-mobile {
    min-width: 140px;
    max-width: 180px;
    flex: 1 1 140px;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.65rem 0.7rem;
    white-space: nowrap;
    background: #23232b !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    text-align: center;
    transition: background 0.15s, color 0.15s, border 0.15s;
    box-shadow: 0 2px 8px #0002;
  }
  .btn-phase-mobile.active,
  .btn-phase-mobile.btn-warning {
    background: #fff !important;
    color: #23232b !important;
    border-color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 16px #23232b22;
  }
  .bienvenue-user { font-size: 15px !important; display: block; line-height: 1.2; }
  .bienvenue-label { display: block; }
  .bienvenue-nom { display: block; margin-top: 2px; }
  .pt-mobile-60 { padding-top: 60px !important; }
  .select-titulaires img {
    animation: titulaire-glow 1.2s infinite alternate;
    box-shadow: 0 0 0 0 white;
    border-radius: 50px;
  }
  @keyframes titulaire-glow {
    0% {
      filter: drop-shadow(0 0 0px white);
      box-shadow: 0 0 0 0 white;
    }
    100% {
      filter: drop-shadow(0 0 5px white);
      box-shadow: 0 0 8px 2px white;
    }
  }
}

.match-row {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0001;
  margin-bottom: 24px;
  padding: 18px 8px;
  align-items: center;
}
.match-row .team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.match-row .team-block img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 4px;
  box-shadow: 0 1px 4px #0002;
}
.match-row .score-block,
.match-row .prono-block,
.match-row .points-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.match-row .score-value,
.match-row .prono-value {
  font-size: 1.3rem;
  font-weight: bold;
  color: #222;
}
.match-row .label {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 2px;
}
.match-row .points-block .score-value {
  color: #198754;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .match-row {
    flex-direction: column !important;
    text-align: center;
    padding: 12px 2px;
  }
  .match-row > div {
    margin-bottom: 10px;
  }
}

/* Responsive pour le dashboard des pronostics matchs */
@media (max-width: 767.98px) {
  .card.p-3.mb-3 h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .card.p-3.mb-3 {
    padding: 0.7rem !important;
  }
  .row.mb-2,
  .row.align-items-center.mb-1 {
    font-size: 0.98rem !important;
  }
  .row.mb-2 > div,
  .row.align-items-center.mb-1 > div {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
  .col-3,
  .col-2 {
    flex: 0 0 auto;
    width: 50% !important;
    max-width: 50% !important;
    display: inline-block;
    vertical-align: top;
  }
  .col-12 {
    width: 100% !important;
    max-width: 100% !important;
  }
  .select-titulaires img {
    height: 22px !important;
  }
  .table-responsive {
    font-size: 0.95rem;
  }
  .btn,
  button {
    font-size: 0.95rem !important;
    padding: 0.3rem 0.7rem !important;
  }
  .modal-dialog {
    max-width: 98vw !important;
    margin: 0.5rem auto;
  }
  .modal-content {
    font-size: 0.98rem;
  }
  input[type="number"].form-control {
    width: 45px !important;
    font-size: 1rem !important;
    padding: 2px 4px !important;
  }
}

/* Amélioration générale pour petits écrans */
@media (max-width: 575.98px) {
  .card.p-3.mb-3 h4 {
    font-size: 1rem;
  }
  .row.mb-2,
  .row.align-items-center.mb-1 {
    font-size: 0.93rem !important;
  }
  .modal-content {
    font-size: 0.93rem;
  }
}

/* Logo principal responsive */
.logo-main {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .logo-main {
    max-width: 300px;
    margin-top: 90px;
    margin-bottom: 10px;
  }
  .header-logo {
    height: 31px !important;
    margin-left: -8px !important;
    margin-right: -21px !important;
  }
  
  /* Version arabe pour mobile */
  .lang-ar .header-logo {
    height: 31px !important;
    margin-left: -8px !important;
    margin-right: -21px !important;
  }
}

/* Pour header.php : logo dans le header */
.header-logo {
  height: 65px;
  width: auto;
  border-radius: 8px;
  margin-left: -250px;
  margin-right: -18x;
  transition: height 0.2s;
}

/* Version arabe pour le logo header */
.lang-ar .header-logo {
  height: 65px;
  width: auto;
  border-radius: 8px;
  margin-right: -190px;
  margin-left: 0px;
  transition: height 0.2s;
}

#dashboardContent {
  width: 100%;
  margin: auto;
}
@media (max-width: 767.98px) {
  #dashboardContent {
    max-width: 99vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2px;
    padding-right: 2px;
  }
}

.match-card-mobile {
  background: #23232b;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0002;
  margin-bottom: 18px;
  padding: 12px 10px 10px 10px;
  color: #fff;
}
.match-card-mobile .teams {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.match-card-mobile .info {
  font-size: 1rem;
  margin-bottom: 3px;
}
.match-card-mobile input[type="number"] {
  width: 38px !important;
  display: inline-block;
  font-size: 1.05rem;
  padding: 2px 4px;
  margin: 0 2px;
}
.match-card-mobile .btn {
  font-size: 0.98rem;
  padding: 0.35rem 1.1rem;
  border-radius: 8px;
}

@keyframes pulseClic {
  0% {
    box-shadow: 0 0 0 0 #b71c1c55, 0 2px 8px #b71c1c33;
    filter: brightness(1.08);
  }
  60% {
    box-shadow: 0 0 0 8px #b71c1c11, 0 2px 8px #b71c1c33;
    filter: brightness(1.18);
  }
  100% {
    box-shadow: 0 0 0 0 #b71c1c00, 0 2px 8px #b71c1c33;
    filter: brightness(1.08);
  }
}

.select-titulaires {
  transition: box-shadow 0.2s, filter 0.2s, transform 0.2s;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 4px;
  display: inline-block;
  animation: pulseClic 1.3s infinite;
  border-radius: 50px;
}
.select-titulaires:active,
.select-titulaires:focus {
  box-shadow: 0 2px 8px #b71c1c99, 0 0 0 8px #b71c1c22;
  filter: brightness(1.22);
  background: #2a2a38;
  transform: scale(1.09);
}

/* Tabs principaux dashboard pronostics */
#dashboardTabs .nav-tabs {
  border-bottom: 2px solid #ffffff;
  background: #23232b;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 2px;
}
#dashboardTabs .nav-tabs .nav-link {
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0;
  background: none;
  margin-right: 2px;
  transition: background 0.15s, color 0.15s;
}
#dashboardTabs .nav-tabs .nav-link.active {
  background: #ffffff;
  color: #23232b;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 767.98px) {
  #dashboardTabs .nav-tabs {
    font-size: 0.98rem;
    padding-left: 2px;
    padding-right: 2px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
  }
  #dashboardTabs .nav-tabs .nav-link {
    padding: 0.45rem 0.7rem;
    min-width: 90px;
  }
}
/* Sous-tabs journées */
#dashboardContent .nav-pills {
  background: #23232b;
  margin-bottom: 10px;
  overflow-x: auto;
  white-space: nowrap;
}
#dashboardContent .nav-pills .nav-link {
  color: #fff;
  background: none;
  border-radius: 8px;
  margin-right: 2px;
  font-weight: 500;
}
#dashboardContent .nav-pills .nav-link.active {
  background: #ffffff;
  color: #23232b;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #3db568;
}

.nav-link {
  color: #ffffff;
}

.center-vh { height: 50vh; }
@media (min-width: 768px) {
  .center-vh { height: 80vh; }
}

.select-titulaires img {
  border-radius: 50px;
}

.menu-grid-can2025 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 24px;
  max-width: max-content;
  margin: 0 auto 0px auto;
}
.menu-btn-can2025 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.08rem;
  transition: transform 0.12s, box-shadow 0.12s;
  box-shadow: none;
}
.menu-btn-can2025:visited,
.menu-btn-can2025:active,
.menu-btn-can2025:focus {
  color: #fff !important;
  text-decoration: none !important;
}
.menu-btn-can2025:hover {
  transform: scale(1.06);
  text-decoration: none !important;
}
.menu-btn-can2025 img {
  width: 250px;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 2px 8px #0005);
}
@media (max-width: 600px) {
  .menu-grid-can2025 {
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
    max-width: fit-content;
  }
  .menu-btn-can2025 img {
    width: 160px;
  }
}

/* Style pour le titre de bienvenue */
h1.mb-5.text-center {
  margin-top: 20px !important;
}

/* Version arabe */
.lang-ar h1.mb-5.text-center {
  margin-top: 20px !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

/* Styles pour le système de traduction */
.language-selector {
    position: relative;
    display: inline-block;
    z-index: 9999;
}

.language-btn {
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 10000;
}

.language-btn:hover {
    transform: scale(1.1);
    border-color: #ffb300;
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}

.language-btn span {
    transition: transform 0.3s ease;
    pointer-events: none;
}

.language-btn:hover span {
    transform: scale(1.05);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0,0,0,0.95);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 140px;
    z-index: 9998;
    display: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.language-dropdown.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-option {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 9999;
}

.language-option:hover {
    background-color: rgba(255,179,0,0.2);
    color: #ffb300;
    text-decoration: none;
    transform: translateX(5px);
}

.language-option span:first-child {
    flex-shrink: 0;
    pointer-events: none;
}

.language-option span {
    font-weight: 500;
    font-size: 14px;
    pointer-events: none;
}

/* Gestion RTL pour l'arabe */
.lang-ar {
    direction: rtl;
    text-align: right;
}

/* Espacement entre la photo et le nom de l'équipe en arabe */
.lang-ar .team-name {
    margin-left: 10px !important;
}

.lang-ar .language-dropdown {
    right: auto;
    left: 0;
}

.lang-ar .language-option:hover {
    transform: translateX(-5px);
}

.lang-ar .language-option span:first-child {
    margin-right: 0;
    margin-left: 8px;
}

/* Styles pour le contenu RTL */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .menu-grid-can2025 {
    direction: rtl;
}

.rtl .bienvenue-user {
    text-align: right;
}

.rtl .accordion-button {
    text-align: right;
}

.rtl .card {
    direction: rtl;
}

.rtl .flex-grow-1 {
    text-align: right;
}

/* Z-index pour le contenu principal */
.container {
    position: relative;
    z-index: 0;
}

.menu-grid-can2025 {
    position: relative;
    z-index: 0;
}

/* Responsive pour le sélecteur de langue */
@media (max-width: 768px) {
    .language-btn {
        width: 35px;
        height: 35px;
    }
    
    .language-btn span {
        font-size: 12px;
    }
    
    .language-dropdown {
        min-width: 120px;
    }
    
    .language-option {
        padding: 8px 12px;
    }
    
    .language-option span {
        font-size: 13px;
    }
}

/* Animation pour le changement de langue */
.language-change-animation {
    animation: languageChange 0.5s ease;
}

@keyframes languageChange {
    0% {
        opacity: 0.7;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Amélioration du style pour les images de menu selon la langue */
.menu-btn-can2025 img {
    transition: all 0.3s ease;
}

.menu-btn-can2025:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Style pour les textes en arabe */
.lang-ar h1, .lang-ar h2, .lang-ar h3, .lang-ar h4, .lang-ar h5, .lang-ar h6 {
    font-family: 'Arial', 'Tahoma', sans-serif;
    font-weight: 600;
}

.lang-ar .bienvenue-label,
.lang-ar .bienvenue-nom {
    font-family: 'Arial', 'Tahoma', sans-serif;
}

/* Amélioration de l'accessibilité */
.language-btn:focus {
    outline: 2px solid #ffb300;
    outline-offset: 2px;
}

.language-option:focus {
    outline: 2px solid #ffb300;
    outline-offset: 2px;
    background-color: rgba(255,179,0,0.2);
}

/* Réduction de la taille des champs de saisie sur la page welcome */
.form-control-lg,
.form-select-lg {
    font-size: 0.9rem !important;
    padding: 0.4rem 0.75rem !important;
    line-height: 1.5 !important;
}

/* Bouton fixe en bas pour la page pronostic_vainqueur */
#validateWinnerBtn {
    position: fixed !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1000 !important;
    padding: 0.5rem !important;
    font-size: 1rem !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
    background-color: #990605 !important;
    border-color: #990605 !important;
    color: #ffffff !important;
}

/* Ajouter un padding en bas du conteneur pour éviter que le contenu soit masqué */
.page-pronostic-vainqueur {
    padding-bottom: 100px !important;
}

/* Pour mobile, ajuster le padding en bas */
@media (max-width: 767.98px) {
    .page-pronostic-vainqueur {
        padding-bottom: 80px !important;
    }
}

/* Style spécifique pour les boutons sur les pages quizz_new_phases, challenge_photos et gagnants */
@media (max-width: 767.98px) {
    .page-quizz-new-phases .btn,
    .page-quizz-new-phases button,
    .page-challenge-photos .btn,
    .page-challenge-photos button,
    .page-gagnants .btn,
    .page-gagnants button {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.7rem !important;
    }
}

