body {
    user-select: none; /* Empêche la sélection de texte sur tout le corps de la page */
    background-color: #DDF2FD;
    color: #427D9D;
    margin: 0;
    padding: 0;
    
}

.header {
    background-color: #C8AE7D;
    padding: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.container {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s;
}

.title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #164863;
    display: flex;
    align-items: center;
    justify-content: center;
}

.description {
    font-size: 20px;
    font-weight: bold;
    color: #427D9D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.input {
    padding: 10px;
    width: 100%;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}


.matiere-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: transform .2s;
    cursor: pointer;
    margin-bottom: 20px;
    text-decoration: none;
}

.matiere-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.to-the-center {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rendre les liens souligné en noir et pas en bleu */

a {
    text-decoration: none;
    color: #000000;
    /* souligner le texte */
    text-decoration: underline;
}

.maintenance-banner {
    background-color: #164863;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 5);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    top: 0;
    width: 100%;
    font-weight: bold;
    z-index: 9999; /* pour être sûr que le bandeau s'affiche au-dessus de tout le reste */
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #427D9D;
}

/* Styles pour le bouton "inutilisable" */
.card-disabled {
    color: #000; /* Couleur du texte noire */
    cursor: not-allowed; /* Curseur interdit */
    pointer-events: none; /* Désactiver les interactions de clic */
    opacity: 0.6; /* Opacité réduite */
    box-shadow: none; /* Pas d'ombre */
}

/* Supprimer les effets de survol */
.card-disabled:hover {
    background-color: #ccc;
    color: #000;
    box-shadow: none;
}

.infobtn {
    color: white;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.newstext {
    font-size: 13px;
    font-weight: bold;
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #427D9D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-fixed-height {
    height: 100%; /* Définissez la hauteur souhaitée */
}

.card-anim {
    transition: transform .3s;
}

.card-anim:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-muted {
    font-size: 15px;
    font-weight: bold;
}