#vlbw-calculator-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.vlbw-column {
    flex: 1;
    min-width: 300px;
}

.vlbw-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
.vlbw-column .vlbw-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


.vlbw-title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #005a9c;
}

.vlbw-price-display, .vlbw-input-display {
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
}
.vlbw-input-display {
    font-size: 18px;
    color: #555;
    background-color: #f5f5f5;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 10px;
    text-align: center;
}

.vlbw-form-group {
    margin-bottom: 15px;
}

.vlbw-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.vlbw-radio-group label {
    display: inline-block;
    margin-right: 20px;
    font-weight: normal;
}

#vlbw-calculator-wrapper select,
#vlbw-calculator-wrapper input[type="range"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

#downpayment-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 5px;
}
#downpayment-slider:hover {
    opacity: 1;
}
#downpayment-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #0073e6;
    cursor: pointer;
    border-radius: 50%;
}
#downpayment-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0073e6;
    cursor: pointer;
    border-radius: 50%;
}


/* Cột kết quả */
.vlbw-result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.vlbw-result-row span:last-child {
    font-weight: 600;
}

.vlbw-total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
    color: #d32f2f;
    margin-top: 10px;
}
.vlbw-total-row.highlight {
    background-color: #fff3e0;
    padding: 12px;
    border-radius: 5px;
}

.vlbw-disclaimer {
    font-size: 12px;
    color: #777;
    margin-top: 20px;
    text-align: center;
}