/* ============================================
   DASHBOARD - MOBILE-FIRST COMPACT REDESIGN
   Smart information density, not just smaller
   ============================================ */

/* ====== CSS VARIABLES ====== */
:root {
    /* Brand Colors */
    --brand-primary: #0d2b35;
    --brand-primary-hover: #1a4255;
    --brand-gold: #d4af37;
    --brand-gold-hover: #c49a2a;

    /* Status Colors */
    --status-draft: #94a3b8;
    --status-reserved: #3b82f6;
    --status-confirmed: #16a34a;
    --status-live: #ef4444;
    --status-completed: #8b5cf6;
    --status-closed: #475569;

    /* Alert Colors */
    --alert-success: #16a34a;
    --alert-info: #3b82f6;
    --alert-warning: #f59e0b;
    --alert-danger: #ef4444;

    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== ANIMATIONS ====== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ====== BASE STYLES (Mobile First) ====== */
.dash-page {
    min-height: 100vh;
    background: var(--gray-50);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.dash-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0.75rem;
}

/* ====== BREADCRUMB ====== */
.dash-breadcrumb {
    display: none;
}

/* ====== HEADER ====== */
.dash-header {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.dash-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.dash-header-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover));
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.dash-header-text {
    min-width: 0;
}

.dash-header-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.dash-header-subtitle {
    display: none;
}

.dash-header-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ====== BUTTONS ====== */
.dash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.dash-btn i {
    font-size: 0.875rem;
}

.dash-btn span {
    display: none;
}

.dash-btn-primary {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-hover));
    color: var(--gray-900);
    border-color: var(--brand-gold);
    font-weight: 600;
}

.dash-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--brand-gold-hover), var(--brand-gold));
}

.dash-btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border-color: transparent;
}

.dash-btn-ghost:hover:not(:disabled) {
    background: var(--gray-100);
}

.dash-btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.dash-btn-sm {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
}

/* ====== LOADING ====== */
.dash-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 0.75rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
}

.dash-spinner {
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--gray-200);
    border-top-color: var(--brand-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ====== STATS GRID ====== */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dash-stat-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: var(--shadow-xs);
}

.dash-stat-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.dash-stat-primary .dash-stat-icon {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover));
}

.dash-stat-success .dash-stat-icon {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.dash-stat-warning .dash-stat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.dash-stat-info .dash-stat-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.dash-stat-danger .dash-stat-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.dash-stat-neutral .dash-stat-icon {
    background: linear-gradient(135deg, var(--gray-500), var(--gray-600));
}

.dash-stat-content {
    flex: 1;
    min-width: 0;
}

.dash-stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.dash-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.dash-stat-change {
    font-size: 0.6875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.dash-stat-change.positive {
    color: #16a34a;
}

.dash-stat-change.negative {
    color: #ef4444;
}

.dash-stat-change.neutral {
    color: var(--gray-600);
}

/* ====== CONTENT GRID ====== */
.dash-content-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dash-main-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dash-side-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ====== CARD ====== */
.dash-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.dash-card-header {
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-card-title {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.dash-card-title i {
    color: var(--brand-primary);
    font-size: 1rem;
}

.dash-card-body {
    padding: 0.75rem;
}

.dash-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

/* ====== BADGE ====== */
.dash-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dash-badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.dash-badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.dash-badge-success {
    background: #d1fae5;
    color: #065f46;
}

.dash-badge-urgent {
    background: #fee2e2;
    color: #991b1b;
    animation: pulse 2s ease-in-out infinite;
}

.dash-badge-high {
    background: #fed7aa;
    color: #9a3412;
}

.dash-badge-normal {
    background: var(--gray-100);
    color: var(--gray-700);
}

/* ====== URGENT ACTIONS ====== */
.dash-alert-card {
    border-left: 3px solid #ef4444;
    background: linear-gradient(to right, #fef2f2, white);
}

.dash-urgent-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-urgent-item {
    display: flex;
    gap: 0.625rem;
    padding: 0.625rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    align-items: center;
}

.dash-urgent-item.dash-urgency-critical {
    border-color: #fca5a5;
    background: #fef2f2;
}

.dash-urgent-item.dash-urgency-high {
    border-color: #fdba74;
    background: #fffbeb;
}

.dash-urgent-item.dash-urgency-medium {
    border-color: #fde047;
    background: #fefce8;
}

.dash-urgent-item:active {
    transform: scale(0.98);
}

.dash-urgent-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.dash-urgency-critical .dash-urgent-icon {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.dash-urgency-high .dash-urgent-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.dash-urgency-medium .dash-urgent-icon {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.dash-urgent-content {
    flex: 1;
    min-width: 0;
}

.dash-urgent-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.125rem 0;
}

.dash-urgent-description {
    font-size: 0.75rem;
    color: var(--gray-700);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dash-urgent-time {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #ef4444;
    margin-top: 0.25rem;
}

.dash-urgent-arrow {
    display: flex;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ====== EVENTS LIST ====== */
.dash-events-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-event-card {
    display: flex;
    gap: 0.625rem;
    padding: 0.625rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dash-event-card:active {
    transform: scale(0.99);
    background: var(--gray-50);
}

.dash-event-date-badge {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover));
    border-radius: var(--radius-md);
    color: white;
    flex-shrink: 0;
    position: relative;
}

.dash-event-day {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.dash-event-month {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dash-event-days-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.125rem 0.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid white;
}

.dash-event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.dash-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.dash-event-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-event-status {
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-size: 0.5625rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.dash-status-reserved { background: var(--status-reserved); }
.dash-status-confirmed { background: var(--status-confirmed); }
.dash-status-completed { background: var(--status-completed); }

.dash-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dash-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-700);
}

.dash-meta-item i {
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* Hide venue on mobile - keep customer and guests */
.dash-meta-item:last-child {
    display: none;
}

.dash-event-alerts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.25rem;
}

.dash-event-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 500;
}

.dash-alert-warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde047;
}

.dash-alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.dash-alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.dash-booking-slot {
    font-weight: 600;
    color: var(--brand-primary);
}

/* ====== ACTIVITY TIMELINE ====== */
.dash-activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-activity-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    align-items: center;
}

.dash-activity-icon {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    font-size: 0.75rem;
    color: white;
}

.dash-icon-payment {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.dash-icon-status {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.dash-activity-content {
    flex: 1;
    min-width: 0;
}

.dash-activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.dash-activity-text {
    font-size: 0.75rem;
    color: var(--gray-900);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-activity-amount {
    font-size: 0.75rem;
    font-weight: 700;
    color: #16a34a;
    flex-shrink: 0;
}

.dash-activity-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    color: var(--gray-600);
    margin-top: 0.125rem;
}

.dash-activity-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dash-activity-event {
    color: var(--brand-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ====== QUICK ACTIONS ====== */
.dash-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.dash-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 0.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-size: 0.6875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dash-action-btn:active {
    transform: scale(0.95);
    background: white;
}

.dash-action-btn i {
    font-size: 1.125rem;
}

/* ====== PAYMENT OVERVIEW ====== */
.dash-payment-overview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dash-payment-chart {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-chart-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.6875rem;
}

.dash-legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dash-legend-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.dash-chart-bar {
    height: 1.75rem;
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-100);
}

.dash-bar-segment {
    height: 100%;
    transition: width 0.3s ease;
}

.dash-bar-collected {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.dash-bar-due {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.dash-payment-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-payment-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.dash-payment-stat-header {
    display: flex;
    align-items: center;
}

.dash-payment-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
}

.dash-payment-amount {
    font-size: 0.875rem;
    font-weight: 700;
}

.dash-amount-success { color: #16a34a; }
.dash-amount-warning { color: #f59e0b; }
.dash-amount-danger { color: #ef4444; }

.dash-section-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
}

.dash-upcoming-payments {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.dash-payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.dash-payment-item:active {
    background: white;
}

.dash-payment-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dash-payment-event {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-payment-deadline {
    font-size: 0.6875rem;
    color: #f59e0b;
    font-weight: 500;
}

.dash-payment-item .dash-payment-amount {
    font-size: 0.8125rem;
    color: var(--gray-900);
}

/* ====== INVENTORY ACTIONS ====== */
.dash-inventory-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.dash-inventory-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
}

.dash-inventory-item:active {
    background: white;
}

.dash-inventory-icon {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.dash-icon-dispatch {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.dash-icon-return {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.dash-inventory-content {
    flex: 1;
    min-width: 0;
}

.dash-inventory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-inventory-action {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
}

.dash-inventory-badge {
    font-size: 0.5625rem;
}

.dash-inventory-event {
    font-size: 0.6875rem;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-inventory-date {
    font-size: 0.6875rem;
    color: var(--gray-600);
}

/* ====== WEEK CALENDAR ====== */
.dash-week-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.dash-week-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.25rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    min-height: 3.5rem;
}

.dash-week-day.today {
    background: rgba(13, 43, 53, 0.05);
    border-color: var(--brand-primary);
}

.dash-week-day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.25rem;
}

.dash-week-day-name {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
}

.dash-week-day-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-900);
}

.dash-week-events {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    width: 100%;
    align-items: center;
}

.dash-week-event {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dash-week-event-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.dash-week-event-dot.dash-status-reserved { background: var(--status-reserved); }
.dash-week-event-dot.dash-status-confirmed { background: var(--status-confirmed); }
.dash-week-event-dot.dash-status-completed { background: var(--status-completed); }

.dash-week-event-name {
    display: none;
}

.dash-week-empty {
    text-align: center;
    color: var(--gray-300);
    font-size: 0.75rem;
}

/* ====== EMPTY STATE ====== */
.dash-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    color: var(--gray-600);
}

.dash-empty-state > i {
    font-size: 2rem;
    color: var(--gray-300);
}

.dash-empty-state p {
    font-size: 0.8125rem;
    margin: 0.5rem 0;
}

.dash-empty-state-sm {
    padding: 1rem;
}

.dash-empty-state-sm i {
    font-size: 1.5rem;
}

/* ====== TABLET BREAKPOINT (640px+) ====== */
@media (min-width: 640px) {
    .dash-container {
        padding: 1rem;
    }

    .dash-header {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .dash-header-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.125rem;
    }

    .dash-header-title {
        font-size: 1.25rem;
    }

    .dash-header-subtitle {
        display: block;
        font-size: 0.8125rem;
        color: var(--gray-600);
        margin: 0;
    }

    .dash-btn span {
        display: inline;
    }

    .dash-stats-grid {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .dash-stat-card {
        padding: 0.875rem;
    }

    .dash-stat-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.125rem;
    }

    .dash-stat-label {
        font-size: 0.75rem;
    }

    .dash-stat-value {
        font-size: 1.375rem;
    }

    .dash-content-grid {
        gap: 1rem;
    }

    .dash-card-header {
        padding: 0.875rem 1rem;
    }

    .dash-card-title {
        font-size: 0.9375rem;
    }

    .dash-card-body {
        padding: 0.875rem;
    }

    .dash-event-date-badge {
        width: 3.25rem;
        height: 3.25rem;
    }

    .dash-event-day {
        font-size: 1.125rem;
    }

    .dash-event-name {
        font-size: 0.9375rem;
    }

    .dash-meta-item {
        font-size: 0.8125rem;
    }

    /* Show venue on tablet */
    .dash-meta-item:last-child {
        display: flex;
    }

    .dash-week-day {
        padding: 0.5rem;
        min-height: 4rem;
    }

    .dash-week-event {
        width: 100%;
        justify-content: flex-start;
        padding: 0.125rem;
        gap: 0.25rem;
    }

    .dash-week-event-name {
        display: block;
        font-size: 0.625rem;
        color: var(--gray-700);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* ====== DESKTOP BREAKPOINT (1024px+) ====== */
@media (min-width: 1024px) {
    .dash-container {
        padding: 1.25rem;
    }

    .dash-breadcrumb {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        font-size: 0.8125rem;
    }

    .dash-breadcrumb-item {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        color: var(--gray-600);
        padding: 0.375rem 0.5rem;
        border-radius: var(--radius-md);
    }

    .dash-breadcrumb-current {
        color: var(--gray-900);
        font-weight: 500;
    }

    .dash-header {
        padding: 1rem 1.25rem;
    }

    .dash-header-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.25rem;
    }

    .dash-header-title {
        font-size: 1.375rem;
    }

    .dash-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .dash-stat-card {
        padding: 1rem;
    }

    .dash-stat-icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.25rem;
    }

    .dash-stat-value {
        font-size: 1.5rem;
    }

    .dash-content-grid {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 1rem;
    }

    .dash-card-title {
        font-size: 1rem;
    }

    .dash-event-card:hover {
        transform: translateX(2px);
        box-shadow: var(--shadow-sm);
        border-color: var(--brand-primary);
    }

    .dash-urgent-item:hover {
        transform: translateX(2px);
        box-shadow: var(--shadow-sm);
    }

    .dash-action-btn:hover {
        background: white;
        border-color: var(--brand-primary);
        color: var(--brand-primary);
        transform: translateY(-1px);
    }

    .dash-payment-item:hover {
        background: white;
        border-color: var(--brand-primary);
    }

    .dash-inventory-item:hover {
        background: white;
        border-color: var(--brand-primary);
    }
}

/* ====== LARGE DESKTOP (1280px+) ====== */
@media (min-width: 1280px) {
    .dash-container {
        padding: 1.5rem;
        max-width: 1600px;
    }

    .dash-stats-grid {
        gap: 1.25rem;
    }

    .dash-stat-card {
        padding: 1.125rem;
    }

    .dash-stat-value {
        font-size: 1.625rem;
    }

    .dash-content-grid {
        grid-template-columns: 1fr 380px;
        gap: 1.25rem;
    }

    .dash-card-body {
        padding: 1rem;
    }

    .dash-event-date-badge {
        width: 3.5rem;
        height: 3.5rem;
    }

    .dash-event-day {
        font-size: 1.25rem;
    }

    .dash-event-name {
        font-size: 1rem;
    }
}
