/* ===================================================
   dashboard.css — Dashboard-specific styles
   Requires: global.css
   =================================================== */

.app-header {
    padding: 25px 20px 15px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    justify-content: space-between;
}

.user-greeting h1 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}

.user-greeting p {
    font-size: 13px;
    color: var(--text-muted);
}

.profile-pic {
    width: 45px;
    height: 45px;
    background-color: var(--primary-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.content {
    padding: 20px;
}

/* Quick-action buttons */
.quick-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-action {
    flex: 1;
    background-color: var(--primary-gold);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s;
}

.btn-action:active { transform: scale(0.95); }

.btn-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    box-shadow: none;
}

/* Stats 2×2 grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background-color: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.08);
}

.stat-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.icon-total   { background: #e3f2fd; color: #2196f3; }
.icon-success { background: #e8f8f5; color: var(--success); }
.icon-danger  { background: #fdedec; color: var(--danger); }
.icon-warning { background: #fef9e7; color: var(--warning); }

.stat-value {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Recent activity list */
.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title a {
    font-size: 13px;
    color: var(--primary-gold);
    text-decoration: none;
}

.guest-list {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.guest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f1f1f1;
}

.guest-item:last-child { border-bottom: none; }

.guest-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-avatar {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--text-muted);
}

.guest-name  { font-size: 14px; font-weight: 700; }
.guest-phone { font-size: 12px; color: var(--text-muted); }

.status-badge {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.status-accepted { background-color: #e8f8f5; color: var(--success); }
.status-declined { background-color: #fdedec; color: var(--danger); }
.status-pending  { background-color: #fef9e7; color: var(--warning); }
