/* Electric Vehicle Savings Calculator Specific Styles */

/* Form Sections */
.form-section {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin-bottom: 16px;
}

/* Radio Button Styling */
.inline-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.inline-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.inline-group input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* Results Sections */
.results-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.results-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.results-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary, #4b5563);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight important results */
.results-item.highlight {
    background: var(--success-bg, #ecfdf5);
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
    font-weight: 600;
}

.results-item.highlight .results-value {
    color: var(--success-color, #059669);
}

/* Responsive */
@media (max-width: 640px) {
    .button-group {
        flex-direction: column;
    }

    .inline-group {
        flex-direction: column;
        gap: 12px;
    }

    .form-section {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .section-title {
        font-size: 1rem;
    }
}
