/* Enhanced Theme System - Integrating with theme.css */
/* Note: Main theme variables and styles are in theme.css */
/* This file contains app-specific customizations */

/* Import our comprehensive theme system */
/* The theme.css file should be loaded first in _Layout.cshtml */

/* Enhanced sidebar styles that complement theme.css */
/* Note: Main sidebar styles are in _Layout.cshtml <style> section and theme.css */

/* Sidebar customizations for this app */

/* Legacy styles cleanup - most of these are now handled by theme.css */

/* Search and Filter Panel - Enhanced from Dashboard styles */
.search-filter-panel {
    background: linear-gradient(rgba(var(--color-primary-rgb), 0.9), rgba(var(--color-primary-rgb), 0.8)) !important;
    color: var(--color-text-white) !important;
    padding: 1.5rem;
    border-radius: 0.75rem 0.75rem 0 0;
}

.search-filter-panel .form-label {
    color: var(--color-text-white) !important;
}

/* Dashboard specific enhancements */
.dashboard-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Mobile responsiveness enhancements */
@media (max-width: 768px) {
    .dashboard-card {
        margin-bottom: 1rem;
    }
}

/* Additional utility classes that complement theme.css */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hover-scale:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.border-gradient-primary {
    border: 2px solid transparent;
    background: linear-gradient(var(--color-card-bg), var(--color-card-bg)) padding-box,
                linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)) border-box;
}
