/* Style global de la page 
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
}*/

/* Conteneur principal des onglets */
.tabs-container {
    width: 100%;
    max-width: 700px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* En-tête des onglets (boutons) */
.tabs-header {
    display: flex;
    background-color: #e5e5e5;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: inherit;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

.tab-btn:hover {
    background-color: #dcdcdc;
    color: #000;
}

/* Bouton actif */
.tab-btn.active {
    background-color: #ffffff;
    color: #cc0000; /* Couleur style Red Hat */
    border-bottom: 3px solid #cc0000;
}

/* Contenu des onglets */
.tab-content {
    display: none;
    padding: 25px;
    animation: fadeIn 0.5s ease;
}

/* Contenu actif affiché */
.tab-content.active {
    display: block;
}

.tab-content h2 {
    margin-top: 0;
    color: #333;
}

.tab-content p {
    line-height: 1.6;
    color: #666;
}

/* Animation d'apparition en douceur */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}