/* Simple Credit Calculator Styles */

.obb-calculator-wrapper.simple-calculator {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.simple-calculator h2 {
    color: #333333;
    text-align: left;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}

.calculator-subtitle {
    color: #666666;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

.form-row input,
.form-row select {
    padding: 12px 16px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: #0066cc;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-row input::placeholder {
    color: #999999;
}

.results-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e1e5e9;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.monthly-payment {
    font-size: 18px;
    font-weight: 600;
    background: #ffffff;
    margin: 16px 0;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #66181c;
}

.result-label {
    color: #333333;
    font-weight: 500;
}

.result-value {
    color: #333333;
    font-weight: 600;
}

.monthly-payment .result-value {
    color: #66181c;
    font-size: 20px;
}


/* Responsive design */
@media (max-width: 768px) {
    .obb-calculator-wrapper.simple-calculator {
        margin: 10px;
        padding: 20px;
    }

    .simple-calculator h2 {
        font-size: 20px;
    }

    .form-row input,
    .form-row select {
        font-size: 16px;
    }
}

