/* === General Dashboard Layout === */
.ecfa-dashboard {
    max-width: 1100px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* === Cards === */
.ecfa-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

/* === Audit Table === */
.ecfa-audit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.ecfa-audit-table th, 
.ecfa-audit-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.ecfa-audit-table th {
    background: #f4f4f4;
    font-weight: 600;
}

.ecfa-section-title {
    background: #e9ecef;
    font-weight: bold;
    padding: 8px;
    text-align: left;
}

/* === Status Styles === */
.ecfa-pass {
    background: #d4edda;
    color: #155724;
    font-weight: bold;
}

.ecfa-fail {
    background: #f8d7da;
    color: #721c24;
    font-weight: bold;
}

.ecfa-warning {
    background: #fff3cd;
    color: #856404;
    font-weight: bold;
}

.ecfa-info {
    background: #d1ecf1;
    color: #0c5460;
    font-weight: bold;
}

/* === Score Card === */
.ecfa-score-card {
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.4em;
    margin: 20px 0;
}

/* === Upsell Grid === */
.ecfa-upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ecfa-highlight {
    border: 2px solid #0073aa;
}

/* === Price Examples === */
.ecfa-price-example {
    font-size: 1.1em;
    color: #0073aa;
    margin: 10px 0;
}

/* === Contact Info === */
.ecfa-contact-info {
    text-align: center;
    margin: 30px 0;
    color: #666;
}

/* === Tips List === */
.ecfa-tips-list {
    list-style: disc;
    padding-left: 20px;
}

/* === Buttons === */
.ecfa-button {
    text-decoration: none;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    background: #0073aa;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

.ecfa-button-secondary {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

.ecfa-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}