.grace-dashboard { max-width: 1400px; margin: 2rem auto; padding: 1rem; }
.dashboard-header { background: linear-gradient(135deg, #4f46e5, #06b6d4); color: white; padding: 2rem; border-radius: 12px; margin-bottom: 2rem; }
.dashboard-header .grade-badge { background: rgba(255,255,255,0.3); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; }

.dashboard-tabs { display: flex; gap: 1rem; flex-wrap: wrap; border-bottom: 2px solid #e2e8f0; margin-bottom: 1.5rem; }
.dashboard-tabs .tab { padding: 1rem 1.5rem; border-bottom: 3px solid transparent; cursor: pointer; text-decoration: none; color: #64748b; display: inline-flex; align-items: center; gap: 0.5rem; }
.dashboard-tabs .tab:hover { color: #4f46e5; }
.dashboard-tabs .tab.active { color: #4f46e5; border-bottom-color: #4f46e5; }

.dashboard-content { background: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.tab-overview, .tab-stats, .tab-upload, .tab-sermons, .tab-donations, .tab-settings { display: none; }
.tab-overview.active, .tab-stats.active, .tab-upload.active, .tab-sermons.active, .tab-donations.active, .tab-settings.active { display: block; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.stat-card { background: linear-gradient(135deg, #4f46e5, #06b6d4); color: white; padding: 1.5rem; border-radius: 12px; }
.stat-card .number { display: block; font-size: 2rem; font-weight: 700; }
.stat-card .label { font-size: 0.875rem; opacity: 0.9; }

.sermons-table, .donations-table { width: 100%; border-collapse: collapse; }
.sermons-table th, .donations-table th { background: #f8fafc; padding: 1rem; text-align: left; border-bottom: 2px solid #e2e8f0; }
.sermons-table td, .donations-table td { padding: 1rem; border-bottom: 1px solid #e2e8f0; }

.status-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; text-transform: uppercase; }
.status-draft { background: #f3f4f6; color: #64748b; }
.status-published { background: #d1fae5; color: #065f46; }

.tab-upload .form-group, .tab-settings .form-group { margin-bottom: 1.25rem; }
.tab-upload label, .tab-settings label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.tab-upload input, .tab-upload select, .tab-upload textarea,
.tab-settings input, .tab-settings select, .tab-settings textarea {
    width: 100%; padding: 0.75rem; border: 2px solid #e2e8f0; border-radius: 8px; box-sizing: border-box;
}
.tab-upload .btn-submit, .tab-settings .btn-submit {
    padding: 0.75rem 2rem; background: #4f46e5; color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; }
    .sermons-table, .donations-table { font-size: 0.875rem; }
    .sermons-table th, .sermons-table td, .donations-table th, .donations-table td { padding: 0.75rem; }
}
