/**
 * FSBO Earnest Money Calculator Styles
 * Clean, professional single-column design
 */

/* Wrapper */
.fsbo-emc-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Container */
.fsbo-emc-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Section Titles */
.fsbo-emc-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Input Section */
.fsbo-emc-input-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.fsbo-emc-form-group {
    margin-bottom: 24px;
}

.fsbo-emc-form-group:last-child {
    margin-bottom: 0;
}

.fsbo-emc-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.fsbo-emc-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.fsbo-emc-currency-symbol {
    position: absolute;
    left: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #666666;
    pointer-events: none;
}

.fsbo-emc-input {
    width: 100%;
    padding: 12px 16px 12px 36px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.fsbo-emc-input:focus {
    outline: none;
    border-color: #4a90e2;
}

.fsbo-emc-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.2s;
    cursor: pointer;
    box-sizing: border-box;
}

.fsbo-emc-select:focus {
    outline: none;
    border-color: #4a90e2;
}

.fsbo-emc-help-text {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: #666666;
}

/* Results Section */
.fsbo-emc-results-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

.fsbo-emc-results-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.fsbo-emc-amount-display {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.fsbo-emc-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.fsbo-emc-percentage {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Requirements */
.fsbo-emc-requirements {
    background: #ffffff;
}

.fsbo-emc-requirements-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.fsbo-emc-requirement-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.fsbo-emc-requirement-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fsbo-emc-requirement-label {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.fsbo-emc-requirement-value {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.5;
}

/* Info Section */
.fsbo-emc-info-section {
    margin-top: 0;
}

.fsbo-emc-info-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.fsbo-emc-info-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 16px 0;
}

.fsbo-emc-info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 16px 0;
}

/* Factors Grid */
.fsbo-emc-factors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.fsbo-emc-factor-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
}

.fsbo-emc-factor-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.fsbo-emc-factor-text {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fsbo-emc-wrapper {
        padding: 16px;
    }

    .fsbo-emc-container {
        padding: 24px;
    }

    .fsbo-emc-section-title {
        font-size: 18px;
    }

    .fsbo-emc-results-title {
        font-size: 18px;
    }

    .fsbo-emc-amount {
        font-size: 28px;
    }

    .fsbo-emc-percentage {
        font-size: 14px;
    }

    .fsbo-emc-info-title {
        font-size: 20px;
    }

    .fsbo-emc-info-subtitle {
        font-size: 18px;
    }

    .fsbo-emc-factors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .fsbo-emc-container {
        padding: 20px;
    }

    .fsbo-emc-input-section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .fsbo-emc-results-section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .fsbo-emc-amount {
        font-size: 24px;
    }

    .fsbo-emc-amount-display {
        padding: 20px;
    }
}
