.rv-calculator-wrapper-29b65218 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    font-family: inherit;
    max-width: 600px;
    margin: 0 auto;
}
.rv-calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.rv-calc-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.rv-calc-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}
.rv-calc-results {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.rv-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #555;
}
.rv-calc-expense {
    color: #d9534f;
}
.rv-calc-primary {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: 5px;
}
.rv-calc-highlight {
    color: #f6af1f; /* Accent color from kit */
}
@media (min-width: 768px) {
    .rv-calc-inputs {
        flex-direction: row;
    }
}
