body {
    margin: 0; /* Optionnel: pour enlever la marge par défaut du navigateur */
    padding: 0; /* Optionnel: pour enlever le padding par défaut du navigateur */
    height: 100%; /* Assurez que le gradient couvre toute la hauteur de la page */
    background: linear-gradient(70deg, #A3E4D7, #F9E79F); /* Le gradient angulaire */
  }
  
/* Définissez les couleurs pour bleu, blanc et rouge */
.letter-blue {
    color: blue;
  }
  
  .letter-white {
    color: white;
  }
  
  .letter-red {
    color: red;
  }
  
  .letter-white {
    color: white;
    text-shadow: 
      -1px -1px 0 #000,  
       1px -1px 0 #000,
      -1px  1px 0 #000,
       1px  1px 0 #000; /* Chaque paire définit un ombre portée, créant l'effet d'un contour */
  }
  



.card img {
    max-height: 150px;
    height: auto;
    width: auto;
}

.card{
    min-height: 500px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* Ombre horizontale, ombre verticale, flou, étendue et couleur */
    transition: 0.3s; /* Ajoute un effet de transition pour l'ombre lors du survol */
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); /* Ombre plus grande lors du survol */
  }


#login {
    min-height: 100% !important; /* Ceci permet à l'image de prendre toute la hauteur du bloc parent */
    width: auto; /* Ceci assure que la largeur de l'image soit ajustée proportionnellement */
  }

.match-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.match-card .card-title {
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.match-card .card-body {
    padding: 1rem;
}

.match-info {
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.match-conseil {
    font-weight: bold;
    margin: 0.5rem 0;
}

.match-stats {
    font-style: italic;
    margin: 0.5rem 0;
    color: #666;
}

.match-prediction {
    color: #333;
    margin: 0.5rem 0;
}

.match-buttons {
    margin-top: 1rem;
    text-align: center;
}

/* Styles spécifiques pour les emojis et alignement */
.match-info .emoji {
    width: 20px;
    display: inline-block;
    text-align: center;
    margin-right: 0.5rem;
}

/* Centrer le titre du match */
.match-title {
    text-align: center !important;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.btn-telegram {
    background-color: #0088cc;
    border-color: #0088cc;
    color: white;
}

.btn-telegram:hover {
    background-color: #006699;
    border-color: #006699;
    color: white;
}

.btn-telegram:active {
    background-color: #005580 !important;
    border-color: #005580 !important;
    color: white !important;
}

.btn-telegram:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 136, 204, 0.25);
    color: white;
}

.telegram-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

