/* Dashboard Specific Styles */
.dashboard-hybrid {
    font-size: 0.9rem;
    background: #f8fafc;
    min-height: 100vh;
}

.dashboard-hybrid .container {
    max-width: 1400px;
    padding: 1rem;
}

.dashboard-hybrid h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

/* Action Grid with high specificity */
.dashboard-hybrid .action-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 0.75rem !important;
    margin: 2rem 0 !important;
}

@media (min-width: 1200px) {
    .dashboard-hybrid .action-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

.dashboard-hybrid .action-card {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #374151 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    height: 56px !important;
}

.dashboard-hybrid .action-card:hover,
.dashboard-hybrid .action-card:focus {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    color: #1e293b !important;
    text-decoration: none !important;
    border-color: #cbd5e1 !important;
}

.dashboard-hybrid .action-card i {
    width: 20px !important;
    height: 20px !important;
    margin-right: 0.75rem !important;
    flex-shrink: 0 !important;
    color: #6366f1 !important;
}

.dashboard-hybrid .action-card-title {
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

.dashboard-hybrid .submit-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border-color: #059669 !important;
    grid-column: 1 / -1 !important;
    justify-content: center !important;
    height: 48px !important;
    margin-bottom: 1rem !important;
}

.dashboard-hybrid .submit-card:hover {
    color: white !important;
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.dashboard-hybrid .submit-card i {
    color: white !important;
}

/* Stats section */
.dashboard-hybrid .stats-overview {
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.dashboard-hybrid .stats-header {
    background: #f8fafc !important;
    color: #374151 !important;
    padding: 0.75rem 1rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.dashboard-hybrid .stats-title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #1e293b !important;
}

.dashboard-hybrid .stats-summary {
    display: flex !important;
    gap: 1.5rem !important;
    font-size: 0.8rem !important;
}

.dashboard-hybrid .stats-summary div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.dashboard-hybrid .stats-number {
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    color: #1e293b !important;
}

.dashboard-hybrid .stats-label {
    font-size: 0.7rem !important;
    color: #64748b !important;
    margin-top: 0.125rem !important;
}

.dashboard-hybrid .submission-badge {
    background: #10b981 !important;
    color: white !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
}