/* Style global pour la gestion des services */
#gestion-services-container {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center; /* Centrer tous les textes */
}

#gestion-services-container h2, 
#gestion-services-container h3 {
    color: #333;
    margin-bottom: 15px;
    text-align: center; /* Centrer les titres */
}

/* Boutons principaux */
#gestion-services-container .button-primary {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
}

#gestion-services-container .button-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#gestion-services-container .button-secondary {
    background-color: #ff9900;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
}

#gestion-services-container .button-secondary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Table pour les participants */
#gestion-services-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#gestion-services-container th, 
#gestion-services-container td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center; /* Centrer le texte dans les cellules */
}

#gestion-services-container tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Partie synthèse */

#synthese-services-container .button-delete {
    background-color: #d9534f;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

#synthese-services-container .button-delete:hover {
    background-color: #c9302c;
}

#synthese-services-container .button-discord {
    background-color: #9f53ec;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

#synthese-services-container .button-discord:hover {
    background-color: #6614b8;
}

/* Style global pour la synthèse des services */
#synthese-services-container {
    font-family: Arial, sans-serif;
    background: #2a2c2c;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center; /* Centrer tous les textes */
}

#synthese-services-container h2, 
#synthese-services-container h3 {
    color: #fff;
    margin-bottom: 15px;
    text-align: center; /* Centrer les titres */
}

/* Formulaire de filtrage */
#synthese-services-container form {
    margin-bottom: 20px;
}

#synthese-services-container label {
    font-weight: bold;
    color: #fff;
    margin-right: 10px;
}

#synthese-services-container select, 
#synthese-services-container input[type="submit"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

/* Boutons principaux */
#synthese-services-container .button-primary {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
}

#synthese-services-container .button-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Table des services */
#synthese-services-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#synthese-services-container th, 
#synthese-services-container td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center; /* Centrer le texte dans les cellules */
}

#synthese-services-container tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Formulaire pour mise à jour des services */
#synthese-services-container input[type="text"] {
    padding: 5px;
    width: 100px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Action de mise à jour du service */
#synthese-services-container .button-update {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

#synthese-services-container .button-update:hover {
    background-color: #218838;
}

/* Si un utilisateur n'a pas de service */
#synthese-services-container p {
    color: #ff0000;
    font-weight: bold;
}
/* Bannière en haut du site */
.service-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #4CAF50; /* Vert */
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
