/* Style pour les onglets principaux (Niveaux) */
.goethe-global-tabs {
    margin: 20px 0;
    padding: 0;
}

.goethe-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 2px solid #ccc;
    flex-wrap: wrap;
}

.goethe-tabs-nav li {
    margin-bottom: -2px; /* Pour masquer la bordure inférieure de l'onglet actif */
}

.goethe-tabs-nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #444;
    border: 1px solid transparent;
    border-bottom: none;
    margin-right: 5px;
    background-color: #f7f7f7;
    border-radius: 5px 5px 0 0;
    transition: background-color 0.3s;
}

.goethe-tabs-nav a:hover {
    background-color: #eee;
}

.goethe-tabs-nav a.active {
    border-color: #ccc;
    background-color: #fff;
    color: #000;
    font-weight: bold;
}

/* Style pour les sous-onglets (Types de cours) */
.goethe-subtabs-nav {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: flex;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.goethe-subtabs-nav li {
    margin-bottom: -1px;
}

.goethe-subtabs-nav a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #666;
    border: 1px solid transparent;
    border-bottom: none;
    margin-right: 5px;
    background-color: #fcfcfc;
    border-radius: 3px 3px 0 0;
    font-size: 0.9em;
}

.goethe-subtabs-nav a.active {
    border-color: #ddd;
    background-color: #fff;
    color: #000;
    font-weight: bold;
}

/* Contenu des onglets */
.goethe-tab-content {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: -1px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.goethe-subtab-content {
    border: 1px solid #eee;
    padding: 15px;
    margin-top: 15px;
}

/* Style du formulaire */
.goethe-inscription-form fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.goethe-inscription-form legend {
    font-weight: bold;
    padding: 0 10px;
    color: #333;
}

.goethe-inscription-form input[type="text"],
.goethe-inscription-form input[type="email"],
.goethe-inscription-form input[type="date"] {
    width: 100%;
    max-width: 350px;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.goethe-inscription-form p {
    margin-bottom: 10px;
}

.goethe-inscription-form .goethe-creneaux label {
    display: block;
    padding: 5px 0;
}

/* Messages d'erreur */
.goethe-errors {
    margin-bottom: 20px;
}

.goethe-errors ul {
    list-style: disc inside;
}

.notice.notice-error {
    background-color: #ffebe8;
    border-left: 4px solid #cc0000;
}

.notice.notice-warning {
    background-color: #fff8e5;
    border-left: 4px solid #ffba00;
}