.cs-simulator {
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    background: #f8f9fc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: inherit;
}

.cs-simulator h2 {
    text-align: center;
    margin-bottom: 20px;  
    color: #ffffff;
    background: #0d0638;
    background: linear-gradient(36deg,rgba(13, 6, 56, 1) 0%, rgba(30, 30, 102, 1) 100%);
    padding: 20px;
    text-align: center;
}

.cs-field {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.cs-field label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
}

.cs-field input,
.cs-field select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.cs-rezultat {
    margin: 20px 0;
    text-align: center;
    font-size: 18px;
}

#cs-rata {
    font-size: 24px;
    font-weight: bold;
    color: #198754;
    margin-top: 5px;
    margin-bottom: 15px;
}

.cs-btn-aplica {
    display: block;
    text-align: center;
    background: #e63946;
    color: white !important;
    padding: 14px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.3s;
}

.cs-btn-aplica:hover {
    background: #c1121f;
}

.cs-disclaimer {
    font-size: 12px;
    margin-top: 15px;
    color: #555;
    text-align: center;
}



.cs-title-custom {
    color: <?php echo esc_attr($culoare_titlu); ?>;
    <?php if($bg_titlu) echo 'background: ' . $bg_titlu . ';'; ?>
            padding: 12px 0;
            border-radius: 8px;
            text-align: center;
}
.cs-btn-aplica-custom {
            background: <?php echo esc_attr($culoare_buton); ?>;
            font-size: <?php echo esc_attr($marime_buton); ?>;
        }
.cs-disclaimer-custom {
            color: <?php echo esc_attr($culoare_disclaimer); ?>;
            font-size: <?php echo esc_attr($marime_disclaimer); ?>;
        }