.church-admin-dashboard {
    background: #f4f8fc;
    min-height: 100vh;
}

.church-admin-dashboard .dashboard-header {
    background: linear-gradient(135deg, #0f4c81 0%, #1d6fb8 100%);
    border-radius: 24px;
    padding: 32px;
    color: #fff;
    box-shadow: 0 14px 35px rgba(16, 76, 129, 0.18);
}

.church-admin-dashboard .dashboard-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.church-admin-dashboard .dashboard-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.church-admin-dashboard .dashboard-subtitle {
    max-width: 760px;
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
}

.church-admin-dashboard .dashboard-btn {
    border-radius: 12px;
    padding: 10px 18px;
    font-weight: 600;
}

.church-admin-dashboard .stat-card,
.church-admin-dashboard .dashboard-panel {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5edf5;
    box-shadow: 0 8px 24px rgba(18, 52, 77, 0.06);
}

.church-admin-dashboard .stat-card {
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    transition: all 0.2s ease;
}

.church-admin-dashboard .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(18, 52, 77, 0.10);
}

.church-admin-dashboard .stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf3fb;
    color: #1d6fb8;
    font-size: 20px;
}

.church-admin-dashboard .stat-label {
    color: #6b7a8c;
    font-size: 14px;
    margin-bottom: 8px;
}

.church-admin-dashboard .stat-value {
    color: #12344d;
    font-size: 1.8rem;
    font-weight: 700;
}

.church-admin-dashboard .dashboard-panel {
    padding: 24px;
}

.church-admin-dashboard .panel-header {
    margin-bottom: 18px;
}

.church-admin-dashboard .panel-header h4 {
    color: #12344d;
    font-weight: 700;
}

.church-admin-dashboard .panel-text {
    font-size: 14px;
    color: #748396;
}

.church-admin-dashboard .module-card {
    display: block;
    height: 100%;
    background: #f8fbfe;
    border: 1px solid #e3edf7;
    border-radius: 18px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.church-admin-dashboard .module-card:hover {
    background: #eef6fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 111, 184, 0.08);
}

.church-admin-dashboard .module-card h6 {
    color: #12344d;
    font-weight: 700;
    margin-bottom: 8px;
}

.church-admin-dashboard .module-card p {
    color: #6d7c8f;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

.church-admin-dashboard .module-icon {
    font-size: 22px;
    color: #1d6fb8;
    margin-bottom: 14px;
}

.church-admin-dashboard .quick-actions {
    display: grid;
    gap: 12px;
}

.church-admin-dashboard .quick-action-btn {
    display: block;
    text-decoration: none;
    background: #f3f8fd;
    color: #12344d;
    border: 1px solid #e1ebf5;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.church-admin-dashboard .quick-action-btn:hover {
    background: #1d6fb8;
    color: #fff;
    border-color: #1d6fb8;
}

.church-admin-dashboard .overview-list {
    display: grid;
    gap: 14px;
}

.church-admin-dashboard .overview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f7;
    color: #5e6d7e;
}

.church-admin-dashboard .overview-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.church-admin-dashboard .overview-item strong {
    color: #12344d;
}

.church-admin-dashboard .activity-list {
    display: grid;
    gap: 14px;
}

.church-admin-dashboard .activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf2f7;
}

.church-admin-dashboard .activity-item h6 {
    color: #12344d;
    font-weight: 600;
}

.church-admin-dashboard .activity-item small {
    color: #7a8898;
}

.church-admin-dashboard .activity-badge {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.church-admin-dashboard .activity-badge.success {
    background: #e8f8ef;
    color: #21824b;
}

.church-admin-dashboard .activity-badge.primary {
    background: #e8f2fd;
    color: #1d6fb8;
}

.church-admin-dashboard .activity-badge.info {
    background: #eaf7fb;
    color: #1e839d;
}

.church-admin-dashboard .activity-badge.warning {
    background: #fff4df;
    color: #b7791f;
}

@media (max-width: 992px) {
    .church-admin-dashboard .dashboard-header {
        padding: 24px;
    }

    .church-admin-dashboard .dashboard-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .church-admin-dashboard .activity-item,
    .church-admin-dashboard .overview-item {
        flex-direction: column;
        align-items: flex-start;
    }
}