/* Style général du conteneur du calculateur */
#cbr-calculator-container {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    max-width: 100%;
    margin: 2em auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Oswald", Roboto, Helvetica, Arial, sans-serif;
}

#cbr-calculator-container h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
    text-align: center;
}

/* Style des groupes de formulaire */
.cbr-form-group {
    margin-bottom: 20px;
}

.cbr-form-group label {
    display: block;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

#cbr-form select,
#cbr-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

#cbr-form select:focus,
#cbr-form input[type="text"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

#cbr-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: normal;
    color: #fff;
    background-color: #4169E1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#cbr-submit-btn:hover {
    background-color: #0C8C01;
}

/* Style de la zone de résultats */
#cbr-results {
    margin-top: 25px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.cbr-notice {
    font-size: 13px;
    padding: 10px;
    margin-top: 8px;
    background-color: #eef7ff;
    border-left: 4px solid #0073aa;
    color: #444;
    border-radius: 0 4px 4px 0;
}

/* Style pour le tableau de résultats */
.cbr-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
}
.cbr-results-table th, .cbr-results-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.cbr-results-table th {
    background-color: #f2f2f2;
    font-weight: 600;
}
.cbr-results-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* Style pour la notice d'information principale */
.cbr-info-notice {
    background-color: #f0f7ff;
    border: 1px solid #ddd;
    border-left: 4px solid #f0b849; /* Jaune/Orange pour attirer l'attention */
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 25px;
}
.cbr-info-notice p {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 14px;
    color: #333;
}
.cbr-info-notice p:last-child {
    margin-bottom: 0;
}
#cbr-calculator-container {
    max-width: 650px;
    margin: 2em auto;
    padding: 2em;
    background-color: #fcfcfc;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

#cbr-calculator-container h4 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5em;
    color: #333;
}

/* Vous pouvez aussi y mettre les styles du tableau de résultats, etc. */
.cbr-results-table {
    width: 100%;
    margin-top: 1.5em;
    border-collapse: collapse;
}

.cbr-results-table th, .cbr-results-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cbr-results-table th {
    background-color: #f8f8f8;
}