.period-selection {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }
	.estimation-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.estimation-container h3 {
    text-align: center;
    color: #7ba389;
    margin-bottom: 35px;
    font-size: 26px;
}

.estimation-cards {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.estimation-card {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.estimation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.estimation-card i {
    font-size: 2em;
    color: #b5995a;
    margin-bottom: 10px;
}

.estimation-card h4 {
    color: #555;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.estimation-card p {
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
    margin: 0;
}

/* Container principal pour choix des estimations */

.estimation-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 100%;
    font-family: Arial, sans-serif;
}

/* Titre */
.estimation-card h3 {
    font-size: 26px;
    color: #7ba389;
    margin-bottom: 35px;
    text-align: center;
}

/* Groupes de formulaire */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 8px;
}

.form-group label span {
    font-weight: normal;
    color: #888;
    font-size: 0.9em;
}

/* Champs de saisie */
.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s ease;
}

.form-group input[type="number"]:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Sélection des périodes */
.period-selection {
    display: flex;
    justify-content: space-between;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-group input[type="checkbox"] {
    transform: scale(1.2);
    accent-color: #4CAF50; /* Couleur personnalisée pour les cases à cocher */
}

/* Texte des gains estimés */
.estimated-gains-text {
    font-size: 1.1em;
    color: #444;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
}


/* Selection tarif */

/* Conteneur principal élargi */
.tariff-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 100%; /* Largeur augmentée */
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Titre */
.tariff-card h3 {
    font-size: 26px;
    color: #7ba389;
    margin-bottom: 35px;
}

/* Message d'administration */
.admin-message {
    background: #f9f9f9;
    padding: 15px 20px;
    border: 1px solid #7ba389;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
    font-size: 0.95em;
}

/* Options de tarifs */
.tariff-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px; /* Espacement entre les options */
    margin-top: 20px;
}

.tariff-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #ddd; /* Contour unique */
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    color: #333;
}

.tariff-option:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50; /* Bordure verte au survol */
}

.tariff-option input[type="radio"] {
    display: none; /* Cacher les boutons radio natifs */
}

.tariff-option input[type="radio"]:checked + .tariff-text {
    color: #c3016a;
    font-weight: bold;
}

/* Texte des tarifs */
.tariff-text {
    font-size: 1.2em;
}

/* Aucun tarif disponible */
.no-tariff {
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Bouton */
.btn-submit {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    font-size: 1em;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #45a049;
}

/* Message de succès */
.notification.success {
    margin-top: 15px;
    padding: 10px;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
    border-radius: 5px;
    font-size: 0.9em;
    text-align: center;
}