/* ===================================
   PREMIUM HYBRID SYSTEM CSS
   =================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Base Container */
/* .premium-hybrid-container stilurile sunt moștenite din premium-unified-system.css */

/* Mobile Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .sidebar-overlay {
        display: none;
    }
}

/* CSS Variables for Premium Theme */
:root {
    /* Primary Colors */
    --primary-color: #667eea;
    --secondary-color: #f093fb;
    --accent-color: #4facfe;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    /* Derivate pentru gradiente (menu-association-premium și altele) — fără ele, background-ul butoanelor devine invalid */
    --primary-color-rgb: 102, 126, 234;
    --primary-dark: #5a67d8;
    --primary-darker: #4c51bf;
    --info-dark: #2563eb;
    --info-darker: #1d4ed8;
    --warning-dark: #d97706;
    --warning-darker: #b45309;
    --danger-dark: #dc2626;
    --danger-darker: #b91c1c;
    
    /* Primary Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --danger-gradient: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Border Colors */
    --border-color: #d1d5db;
    --border-light: #e5e7eb;
    --border-dark: #9ca3af;
    
    /* Glassmorphism Colors */
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
--glass-backdrop: blur(5px);
    
    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
}

/* ===================================
   PREMIUM BODY STYLING
   =================================== */

.premium-body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===================================
   PREMIUM SIDEBAR NAVIGATION
   =================================== */
/* .premium-sidebar stilurile sunt moștenite din premium-unified-system.css */

/* Sidebar Header */
.sidebar-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass-backdrop);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    backdrop-filter: var(--glass-backdrop);
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.premium-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-toggle {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-backdrop);
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Event Selector Section */
.event-selector-section {
    padding: var(--spacing-md);
    margin: var(--spacing-md);
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
}

.event-selector-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.active-event-info {
    text-align: center;
}

.event-name {
    color: white;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.event-status {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(76, 175, 80, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.event-status i {
    font-size: 8px;
}

.no-event-selected {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #ff9800;
    font-size: var(--font-size-sm);
    text-align: center;
}

/* Premium Navigation */
.premium-nav {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.premium-nav .nav-item {
    margin: 2px 0;
}

.premium-nav .nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: var(--radius-md);
    margin: 0 var(--spacing-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(8px);
}

.premium-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: var(--shadow-md);
}

.premium-nav .nav-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.premium-nav .nav-link.disabled:hover {
    transform: none;
    background: none;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
}

.premium-nav .nav-link:hover .nav-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-text {
    font-weight: 500;
    flex: 1;
    transition: all 0.3s ease;
}

.nav-indicator {
    width: 4px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.premium-nav .nav-link.active .nav-indicator {
    opacity: 1;
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--danger-gradient);
    color: white;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar Footer */
.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
    border-top: 1px solid var(--glass-border);
}

.user-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-details {
    flex: 1;
}

.username {
    color: white;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.user-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
}

.user-actions {
    display: flex;
    gap: var(--spacing-xs);
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.logout-btn:hover {
    background: rgba(244, 67, 54, 0.8);
}

/* ===================================
   PREMIUM MAIN CONTENT
   =================================== */
/* .premium-main stilurile sunt moștenite din premium-unified-system.css */

/* Top Navigation */
.premium-top-nav {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Premium Header */
/* .premium-header stilurile sunt moștenite din premium-unified-system.css */

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Breadcrumb */
.breadcrumb-container {
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #764ba2;
}

.breadcrumb-item.active {
    color: #6b7280;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin: 0 0.5rem;
    color: #d1d5db;
}

.top-nav-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.mobile-menu-toggle,
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.125rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-btn:hover {
    background: #f8f9fa;
    color: #495057;
}

@media (max-width: 768px) {
    .mobile-menu-toggle,
    .mobile-menu-btn {
        display: block;
    }
}

.breadcrumb-container {
    display: flex;
    align-items: center;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quick-actions {
    display: flex;
    gap: var(--spacing-xs);
}

.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: none;
    border: none;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-menu-toggle:hover {
    background: #f8f9fa;
}

.user-menu-toggle .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.user-menu-toggle .username {
    color: #495057;
    font-weight: 500;
}

.dropdown-menu {
    min-width: 200px;
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs);
}

.dropdown-item {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}

/* Content Wrapper */
.content-wrapper {
    padding: var(--spacing-lg);
}

/* Flash Messages */
.flash-messages-container {
    position: fixed;
    top: 80px;
    right: var(--spacing-lg);
    z-index: 1000;
    max-width: 400px;
}

.flash-message {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInRight 0.5s ease;
}

.flash-success {
    border-left-color: #28a745;
}

.flash-warning {
    border-left-color: #ffc107;
}

.flash-info {
    border-left-color: #17a2b8;
}

.flash-error {
    border-left-color: #dc3545;
}

.message-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.close-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #495057;
}

/* ===================================
   HYBRID SYSTEM MANAGER
   =================================== */

.hybrid-manager {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.notification-container {
    position: fixed;
    top: 100px;
    right: var(--spacing-lg);
    max-width: 400px;
    pointer-events: auto;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 10000;
}

.loading-content {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-gradient);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

.loading-text {
    color: #495057;
    font-weight: 500;
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10001;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .premium-sidebar {
        /* Sidebar rămâne vizibil pe mobile */
        width: 280px;
        position: fixed;
        z-index: 1000;
        /* Elimin transform: translateX(-100%) pentru a rămâne vizibil */
    }
    
    .premium-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .premium-main-content {
        margin-left: 280px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .top-nav-right {
        gap: var(--spacing-sm);
    }
    
    .quick-actions {
        display: none;
    }
    
    .content-wrapper {
        padding: var(--spacing-md);
    }
    
    .flash-messages-container {
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .premium-sidebar {
        width: 260px;
        /* Sidebar rămâne vizibil și pe ecrane foarte mici */
    }
    
    .premium-main-content {
        margin-left: 260px;
    }
    
    .sidebar-header {
        padding: var(--spacing-md);
    }
    
    .content-wrapper {
        padding: var(--spacing-sm);
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.animate-slide-in {
    animation: slideInRight 0.5s ease;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.premium-shadow {
    box-shadow: var(--shadow-lg);
}

.premium-gradient {
    background: var(--primary-gradient);
}

.text-gradient-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   COMPONENTE HIBRIDE SPECIFICE
   =================================== */

/* Stock Level Indicators */
.stock-level-indicator-hybrid {
    position: relative;
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.stock-level-bar {
    height: 100%;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stock-level-high {
    background: var(--success-gradient);
}

.stock-level-medium {
    background: var(--warning-gradient);
}

.stock-level-low {
    background: var(--danger-gradient);
}

.stock-level-critical {
    background: var(--danger-gradient);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Inventory Grid System - REMOVED DUPLICATE DEFINITIONS */
/* These styles are now handled by hybrid-components.css to avoid conflicts */

.inventory-card-header {
    margin-bottom: var(--spacing-md);
}

.inventory-card-title {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.inventory-card-body {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.stat-value-hybrid {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.stat-value-hybrid.info {
    color: #17a2b8;
}

.stat-value-hybrid.success {
    color: #28a745;
}

.stat-value-hybrid.warning {
    color: #ffc107;
}

.stat-value-hybrid.danger {
    color: #dc3545;
}

.stat-trend-hybrid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.stat-trend-hybrid.positive {
    color: #28a745;
}

.stat-trend-hybrid.negative {
    color: #dc3545;
}

.stat-trend-hybrid.info {
    color: #17a2b8;
}

.stat-trend-hybrid.warning {
    color: #ffc107;
}

.inventory-card-footer {
    text-align: center;
}

.stat-description {
    color: #6c757d;
    font-size: var(--font-size-sm);
}

/* Search & Filter System */
.search-filter-hybrid {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
}

.search-filter-hybrid .form-control {
    border-radius: var(--radius-md);
    border: 1px solid #e9ecef;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all 0.3s ease;
}

.search-filter-hybrid .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Table Enhancements */
.table-section-hybrid {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
    margin-bottom: var(--spacing-lg);
}

.table-hybrid {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-hybrid th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    padding: var(--spacing-md);
    font-weight: 600;
    color: white !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.table-hybrid th.sortable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-hybrid th.sortable:hover {
    background: #e9ecef;
    color: #667eea;
}

.table-hybrid td {
    padding: var(--spacing-md);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    color: #1f2937 !important;
    background: white;
}

.table-hybrid td .supplier-name,
.table-hybrid td .supplier-info strong {
    color: #1f2937 !important;
    font-weight: 600;
    font-size: 1rem;
}

.table-hybrid td .location-info,
.table-hybrid td .contact-info {
    color: #4b5563 !important;
}

.table-hybrid td .city,
.table-hybrid td .county {
    color: #1f2937 !important;
    font-weight: 500;
}

.table-hybrid td .email-link,
.table-hybrid td .phone-link {
    color: #667eea !important;
    text-decoration: none;
    font-weight: 500;
}

.table-hybrid td .email-link:hover,
.table-hybrid td .phone-link:hover {
    color: #f093fb !important;
    text-decoration: underline;
}

/* GARANȚIA VIZIBILITĂȚII - CSS CU SPECIFICITATE MAXIMĂ */
.table-hybrid tbody tr td,
.table-hybrid tbody tr td * {
    color: #1f2937 !important;
    text-shadow: none !important;
}

.table-hybrid tbody tr td .supplier-info,
.table-hybrid tbody tr td .supplier-info * {
    color: #1f2937 !important;
    text-shadow: none !important;
}

.table-hybrid tbody tr td .location-info,
.table-hybrid tbody tr td .location-info * {
    color: #4b5563 !important;
    text-shadow: none !important;
}

.table-hybrid tbody tr td .contact-info,
.table-hybrid tbody tr td .contact-info * {
    color: #4b5563 !important;
    text-shadow: none !important;
}

/* FORȚAREA VIZIBILITĂȚII PENTRU TOATE TEXTURILE */
.table-hybrid tbody tr td strong,
.table-hybrid tbody tr td b,
.table-hybrid tbody tr td span,
.table-hybrid tbody tr td div {
    color: inherit !important;
    text-shadow: none !important;
}

/* FORCE VISIBILITY FOR ALL TEXT IN TABLE - SPECIFICITATE MAXIMĂ */
body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td,
body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td * {
    color: #1f2937 !important;
    text-shadow: none !important;
    background: transparent !important;
}

body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td .supplier-info,
body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td .supplier-info * {
    color: #1f2937 !important;
    text-shadow: none !important;
}

body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td .location-info,
body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td .location-info * {
    color: #4b5563 !important;
    text-shadow: none !important;
}

/* OVERRIDE ANY WHITE TEXT FORCING */
body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td[style*="color: white"],
body .premium-hybrid-container .premium-content .table-container-hybrid .table-responsive .table-hybrid tbody tr td[style*="color:white"] {
    color: #1f2937 !important;
}
.table-hybrid td * {
    color: inherit !important;
}

.table-hybrid td .supplier-info,
.table-hybrid td .location-info,
.table-hybrid td .contact-info {
    color: #1f2937 !important;
}

.table-hybrid td .trade-register {
    color: #6b7280 !important;
    font-size: 0.875rem;
}

.table-hybrid tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

/* Bulk Actions */
.bulk-actions-section-hybrid {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
    display: none;
}

.bulk-actions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #e9ecef;
}

.bulk-actions-header h4 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.bulk-actions-grid {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* Modal System */
/* .modal-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Specific pentru modalul de editare depozit */
#addWarehouseModal .modal-dialog {
    max-width: 900px !important;
    width: 95% !important;
}

#addWarehouseModal .modal-content {
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive pentru modaluri */
@media (max-width: 768px) {
    #addWarehouseModal .modal-dialog {
        max-width: 95vw !important;
        width: 95% !important;
        margin: 1rem auto !important;
    }
}

/* Form Controls în Modaluri - stilurile sunt moștenite din premium-unified-system.css */

/* Button System */
/* .btn-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Badge System */
/* .badge-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Form Controls */
/* .form-control-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Pagination */
.pagination-section-hybrid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.pagination-section-hybrid .page-link {
    border-radius: var(--radius-sm);
    border: 1px solid #e9ecef;
    padding: var(--spacing-sm) var(--spacing-md);
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-section-hybrid .page-link:hover {
    background: #f8f9fa;
    border-color: #667eea;
    color: #667eea;
}

.pagination-section-hybrid .page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: #667eea;
    color: white;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .inventory-grid-hybrid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .bulk-actions-grid {
        flex-direction: column;
    }
    
    .table-section-hybrid {
        overflow-x: auto;
    }
}

/* ===================================
   PREMIUM LOGIN BODY STYLES
   =================================== */

.premium-login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.premium-login-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.premium-login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    border-radius: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease;
}

.premium-login-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.7;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

.premium-login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.premium-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.premium-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.premium-logo-icon i {
    font-size: 2rem;
    color: white;
}

.premium-logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-badge {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.premium-login-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.premium-login-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes borderGlow {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-login-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
        max-width: none;
    }
    
    .premium-logo-text {
        font-size: 1.5rem;
    }
    
    .premium-login-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .premium-login-container {
        padding: 1.5rem 1rem;
    }
    
    .premium-logo {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===================================
   HYBRID COMPONENTS STYLES
   =================================== */

/* Page Header Hybrid - REMOVED DUPLICATE DEFINITIONS */
/* These styles are now handled by hybrid-components.css to avoid conflicts */

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-content {
    text-align: center;
}

.page-title-hybrid {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-subtitle-hybrid {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin: 0;
}

/* Header Actions - PREMIUM HYBRID STYLES */
.header-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-group-hybrid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Button stilurile sunt moștenite din premium-unified-system.css */

/* Button Group Hybrid - MISSING CSS */
.btn-group-hybrid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
/* Button stilurile sunt moștenite din premium-unified-system.css */

/* Search and Filters Hybrid */
.search-filters-hybrid {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 0 0 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
}

/* Search Section - MISSING CSS */
.search-section {
    flex: 1;
    min-width: 300px;
    margin-bottom: 1rem;
}

.filters-form-hybrid {
    width: 100%;
}

.filters-grid-hybrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group-hybrid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
    margin-bottom: 0.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.search-input-hybrid {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-hybrid i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    z-index: 2;
}

/* .form-control-hybrid stilurile sunt moștenite din premium-unified-system.css */

.select-hybrid {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.select-hybrid:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Filters Section - MISSING CSS */
.filters-section {
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: space-between;
}

/* Scan Upload Section - MISSING CSS */
.scan-upload-section {
    padding: 1rem;
}

.upload-zone-hybrid {
    border: 2px dashed var(--border-color, #d1d5db);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: rgba(248, 250, 252, 0.5);
    transition: all 0.3s ease;
}

.upload-zone-hybrid:hover {
    border-color: var(--primary-color, #667eea);
    background: rgba(102, 126, 234, 0.05);
}

.upload-zone-hybrid i {
    color: var(--text-muted, #6b7280);
    margin-bottom: 1rem;
}

.upload-zone-hybrid h6 {
    color: var(--text-primary, #1f2937);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.upload-zone-hybrid p {
    color: var(--text-secondary, #4b5563);
    margin: 0;
    font-size: 0.9rem;
}

.upload-zone-hybrid input[type="file"] {
    margin-top: 1rem;
    width: 100%;
}

/* Action Buttons - MISSING CSS */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    min-height: 60px;
    align-items: center;
}

/* .btn-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Badge Styling - MISSING CSS */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Supplier Info - MISSING CSS */
.supplier-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 60px;
    justify-content: center;
}

.supplier-info strong {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.supplier-info small {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.trade-register {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

/* Status Badges - MISSING CSS */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.status-active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-inactive {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 60px;
    justify-content: center;
    align-items: flex-start;
}

.vat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.vat-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.cif-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.cif-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

/* Location and Contact Info - MISSING CSS */
.location-info, .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 60px;
    justify-content: center;
}

.city {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.county {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.address {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.contact-person {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.email, .phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.email-link, .phone-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover, .phone-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
    opacity: 0.8;
}

/* Pagination - MISSING CSS */
.pagination-container-hybrid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

.pagination-info {
    text-align: center;
}

.pagination-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Empty State Hybrid - MISSING CSS */
.empty-state-hybrid {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
}

.empty-icon {
    margin-bottom: 1.5rem;
}

.empty-state-hybrid h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: var(--font-size-xl);
}

.empty-state-hybrid p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: var(--font-size-base);
}

/* Premium Table Styling - ENHANCED */
.table-hybrid {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.table-header-hybrid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.th-hybrid {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.th-hybrid i {
    margin-right: 0.5rem;
    opacity: 0.9;
}

.table-body-hybrid .table-row-hybrid {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

.table-body-hybrid .table-row-hybrid:nth-child(even) {
    background: rgba(248, 250, 252, 0.5);
}

.table-body-hybrid .table-row-hybrid:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
}

.td-hybrid {
    padding: 1rem;
    vertical-align: top;
    min-height: 80px;
    position: relative;
    color: var(--premium-slate-gray, #475569) !important; /* Culoare vizibilă pentru text */
}

.td-hybrid:first-child {
    color: var(--premium-deep-blue, #1E3A8A) !important; /* Culoare specială pentru prima coloană */
    font-weight: 700;
}

/* Responsive Design - MISSING CSS */
@media (max-width: 768px) {
    .btn-group-hybrid {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group-hybrid .btn-hybrid {
        width: 100%;
    }
    
    .filters-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group-hybrid {
        min-width: auto;
    }
    
    .table-hybrid {
        font-size: 0.875rem;
    }
    
    .th-hybrid, .td-hybrid {
        padding: 0.75rem 0.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .supplier-info,
    .location-info,
    .contact-info {
        min-height: 50px;
    }
    
    .supplier-name {
        font-size: 1rem;
    }
    
    .city,
    .contact-person {
        font-size: 0.9rem;
    }
    
    .search-section {
        min-width: auto;
    }
    
    .form-control-hybrid {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem 0.5rem 2rem;
    }
    
    .select-hybrid {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .page-header-hybrid {
        padding: 1.5rem 1rem;
    }
    
    .search-filters-hybrid {
        padding: 1rem;
    }
    
    .table-container-hybrid {
        margin: 0 0.5rem;
    }
    
    .th-hybrid, .td-hybrid {
        padding: 0.5rem 0.25rem;
    }
    
    .supplier-name {
        font-size: 0.9rem;
    }
    
    .city,
    .contact-person {
        font-size: 0.8rem;
    }
    
    /* .btn-hybrid stilurile sunt moștenite din premium-unified-system.css */
}

/* Table Container Hybrid */
.table-container-hybrid {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 0 2rem 0;
}

/* Button stilurile sunt moștenite din premium-unified-system.css */

/* Events Grid Hybrid */
.events-grid-hybrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
}

/* Responsive adjustments for events grid */
@media (max-width: 1200px) {
    .events-grid-hybrid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .events-grid-hybrid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1rem;
        margin: 1.5rem 0;
    }
}

.event-card-hybrid {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-card-hybrid:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.event-card-hybrid.selected {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.event-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card-hybrid:hover .event-image {
    transform: scale(1.05);
}

.event-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* .badge-hybrid stilurile sunt moștenite din premium-unified-system.css */

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-info {
    background: var(--info-color);
    color: white;
}

.badge-secondary {
    background: var(--text-muted);
    color: white;
}

.badge-light {
    background: var(--border-light);
    color: var(--text-primary);
}

.badge-primary {
    background: var(--primary-color);
    color: white;
}

.event-content-hybrid {
    padding: 1.5rem;
}

.event-title-hybrid {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-details-hybrid {
    margin-bottom: 1.5rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.event-detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.event-actions-hybrid {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

/* Empty State Hybrid */
.empty-state-hybrid {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.empty-state-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Premium Header */
.premium-header {
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    flex-shrink: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--border-light);
}

/* Premium Content */
.premium-content {
    flex: 1;
    padding: 1.5rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #f8fafc;
}

/* Search Container */
.search-container {
    position: relative;
    max-width: 400px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.header-left .search-input {
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.header-left .search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.header-left .search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.875rem;
    pointer-events: none;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* Notification Dropdown */
.notification-dropdown {
    position: relative;
}

.notification-btn {
    background: none;
    border: none;
    position: relative;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
}

.notification-btn:hover {
    background: var(--border-light);
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50px;
    min-width: 1.2rem;
    text-align: center;
    line-height: 1;
}

.notification-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.notification-menu.show {
    display: block;
}

.notification-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h6 {
    margin: 0;
    font-weight: 600;
}

.mark-all-read {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    cursor: pointer;
}

.notification-list {
    padding: 1rem;
}

.no-notifications {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem 1rem;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--text-primary);
}

.user-menu-btn:hover {
    background: var(--border-light);
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.user-dropdown.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: var(--border-light);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0;
}

/* Responsive Design for Hybrid Components */
@media (max-width: 1024px) {
    .premium-content {
        padding: var(--spacing-md);
    }
    
    .search-container {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .search-container {
        display: none;
    }
    
    .filters-grid-hybrid {
        grid-template-columns: 1fr;
    }
    
    .events-grid-hybrid {
        grid-template-columns: 1fr;
    }
    
    .page-header-hybrid {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .page-title-hybrid {
        font-size: var(--font-size-2xl);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .event-actions-hybrid {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .premium-content {
        padding: var(--spacing-sm);
    }
    
    .premium-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .header-right {
        gap: 0.5rem;
    }
    
    .user-name {
        display: none;
    }
}

@media (max-width: 480px) {
    .premium-content {
        padding: 1rem;
    }
    
    .page-header-hybrid {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .search-filters-hybrid {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .event-card-hybrid {
        margin-bottom: 1rem;
    }
    
    .premium-header {
        padding: 0.75rem 1rem;
    }
    
    .notification-menu,
    .user-dropdown {
        min-width: 250px;
        right: -50px;
    }
}

/* Card Hybrid Components */
.card-hybrid {
    background: white;
    backdrop-filter: none;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-hybrid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header-hybrid {
    background: #f9fafb;
    backdrop-filter: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.card-body-hybrid {
    padding: 1.5rem;
    color: #4b5563;
}

/* Button Hybrid Variants */
.btn-danger-hybrid {
    background: var(--danger-gradient);
    color: white;
    border: none;
}

.btn-danger-hybrid:hover {
    background: var(--danger-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-hybrid {
    background: var(--secondary-gradient);
    color: white;
    border: none;
}

.btn-secondary-hybrid:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Main Page Content Centering - Updated for better space usage */
.page-content-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    width: 100%;
}

/* Large screen optimization */
@media (min-width: 1600px) {
    .page-header-hybrid,
    .search-filters-hybrid,
    .events-grid-hybrid,
    .page-content-wrapper {
        max-width: 100%;
    }
}

@media (min-width: 2000px) {
    .page-header-hybrid,
    .search-filters-hybrid,
    .events-grid-hybrid,
    .page-content-wrapper {
        max-width: 100%;
    }
}

/* ===================================
   DASHBOARD HYBRID STYLES
   =================================== */

/* Dashboard Container */
.dashboard-hybrid-container {
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    width: 100%;
}

/* Breadcrumb Hybrid */
.breadcrumb-hybrid {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.breadcrumb-item {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--text-primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
}

/* Dashboard Header */
.dashboard-header-hybrid {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin: 0;
}

.event-status {
    display: flex;
    align-items: center;
}

/* Statistics Grid */
/* .stats-grid-hybrid stilurile sunt moștenite din premium-unified-system.css */

.stat-card-hybrid {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-hybrid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.stat-card-hybrid.stat-primary::before {
    background: var(--primary-gradient);
}

.stat-card-hybrid.stat-success::before {
    background: var(--success-gradient);
}

.stat-card-hybrid.stat-warning::before {
    background: var(--warning-gradient);
}

.stat-card-hybrid.stat-info::before {
    background: var(--accent-gradient);
}

.stat-card-hybrid:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* Charts Grid */
.charts-grid-hybrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.charts-secondary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.chart-card-hybrid {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.chart-card-hybrid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.chart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--glass-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.chart-actions {
    display: flex;
    gap: 0.5rem;
}

.chart-body {
    padding: 1.5rem;
}

.chart-container {
    position: relative;
    height: 300px;
    margin-bottom: 1rem;
}

.chart-large .chart-container {
    height: 400px;
}

.chart-small .chart-container {
    height: 250px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-primary {
    background: var(--primary-color);
}

.legend-success {
    background: var(--success-color);
}

.legend-info {
    background: var(--info-color);
}

/* Activity Grid */
.activity-grid-hybrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.activity-card-hybrid {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.activity-card-hybrid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.activity-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--glass-bg);
}

.activity-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.activity-body {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

/* Table Hybrid */
.table-hybrid-container {
    overflow-x: auto;
}

.table-hybrid {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-sm);
}

.table-hybrid th {
    background: #f9fafb;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
}

.table-hybrid td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.table-hybrid tr:hover {
    background: #f3f4f6;
}

.text-truncate {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.type-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: capitalize;
}

/* Timeline Hybrid */
.timeline-hybrid {
    position: relative;
    padding-left: 2rem;
}

.timeline-hybrid::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.timeline-item-hybrid {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-marker-hybrid {
    position: absolute;
    left: -1.25rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content-hybrid {
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.timeline-title-hybrid {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.timeline-description {
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.timeline-time {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: var(--font-size-base);
    margin: 0;
}

/* Responsive Design for Dashboard */
@media (max-width: 1200px) {
    .charts-grid-hybrid {
        grid-template-columns: 1fr;
    }
    
    .charts-secondary-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-grid-hybrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* .stats-grid-hybrid stilurile sunt moștenite din premium-unified-system.css */
    
    .stat-card-hybrid {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-title {
        font-size: var(--font-size-2xl);
    }
    
    .chart-container {
        height: 250px;
    }
    
    .chart-large .chart-container {
        height: 300px;
    }
    
    .timeline-hybrid {
        padding-left: 1rem;
    }
    
    .timeline-item-hybrid {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    /* .stats-grid-hybrid stilurile sunt moștenite din premium-unified-system.css */
    
    .stat-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .dashboard-hybrid-container {
        padding: 0 0.5rem;
    }
    
    .dashboard-header-hybrid {
        padding: 1.5rem;
    }
    
    .chart-card-hybrid,
    .activity-card-hybrid {
        margin-bottom: 1rem;
    }
    
    .table-hybrid {
        font-size: 0.75rem;
    }
    
    .table-hybrid th,
    .table-hybrid td {
        padding: 0.5rem;
    }
}

/* ===================================
   WAREHOUSE PAGE ANIMATIONS & ENHANCEMENTS
   =================================== */

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.search-highlight {
    animation: pulse 1s ease-in-out;
    border-color: var(--premium-blue) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3) !important;
}

/* Enhanced warehouse cards */
.warehouse-card-hybrid {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.warehouse-card-hybrid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.warehouse-card-hybrid:hover::before {
    left: 100%;
}

.warehouse-card-hybrid:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

/* Enhanced stats display */
.stat-value-hybrid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
}

.stat-value-hybrid::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 2px;
    opacity: 0.8;
}

/* Loading skeleton */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-text:last-child {
    width: 60%;
}

/* Modal stilurile sunt moștenite din premium-unified-system.css */

/* Button stilurile sunt moștenite din premium-unified-system.css */

/* Enhanced search */
.search-input-hybrid:focus {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Enhanced tabs */
.nav-link-hybrid {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px 15px 0 0;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.nav-link-hybrid:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.nav-link-hybrid.active {
    background: rgba(255,255,255,0.95);
    color: #667eea;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.nav-link-hybrid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--premium-blue), var(--premium-purple));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-hybrid:hover::after {
    width: 100%;
}

.nav-link-hybrid.active::after {
    width: 100%;
}

/* Enhanced stats cards */
.inventory-card-hybrid {
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.inventory-card-hybrid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.inventory-card-hybrid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inventory-card-hybrid:hover::after {
    opacity: 1;
}

.inventory-card-hybrid:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 0 30px rgba(102, 126, 234, 0.2);
    background: white;
}

/* Chart placeholders enhancement */
.chart-placeholder {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.95) 0%, 
        rgba(248,250,252,0.9) 50%, 
        rgba(226,232,240,0.85) 100%);
    border: 2px dashed #cbd5e0;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #64748b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.chart-placeholder:hover::before {
    opacity: 1;
}

.chart-placeholder:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, 
        rgba(219,234,254,0.95) 0%, 
        rgba(191,219,254,0.9) 50%, 
        rgba(147,197,253,0.85) 100%);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.chart-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.chart-placeholder:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.chart-placeholder p {
    font-weight: 500;
    margin: 0;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Analytics enhancements */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.analytics-card {
    background: var(--premium-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--hybrid-shadow-soft);
    border: 1px solid var(--hybrid-border-primary);
    transition: all 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hybrid-shadow-medium);
}

.analytics-card h5 {
    margin: 0 0 1.5rem 0;
    color: var(--premium-slate-gray);
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--premium-gray-100);
}

/* Enhanced form controls */
.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* Notification enhancements */
.notification-badge {
    animation: pulse 2s infinite;
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .warehouse-header-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .warehouse-actions-hybrid {
        justify-content: center;
    }
    
    .stats-grid-hybrid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .warehouse-grid-hybrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .analytics-grid-hybrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid-hybrid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stat-value-hybrid {
        font-size: 2rem;
    }
    
    .chart-placeholder,
    .chart-placeholder-hybrid {
        padding: 2rem 1rem;
        min-height: 150px;
    }
    
    .chart-placeholder i,
    .chart-icon-hybrid {
        font-size: 2rem;
    }
    
    /* .warehouse-header-hybrid stilurile sunt moștenite din premium-unified-system.css */
    
    .warehouse-title-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .warehouse-title-hybrid {
        font-size: 2rem !important;
    }
    
    .warehouse-meta-hybrid {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    /* .premium-nav-tabs stilurile sunt moștenite din premium-unified-system.css */
    
    .tab-header-hybrid {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .tab-actions-hybrid {
        justify-content: center;
    }
    
    .search-filter-section-hybrid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* .breadcrumb-premium-hybrid stilurile sunt moștenite din premium-unified-system.css */
    
    .tabs-section-hybrid {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .modal-content-hybrid {
        width: 95vw;
        margin: 1rem;
    }
    
    .modal-header-hybrid,
    .modal-body-hybrid,
    .modal-footer-hybrid {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .warehouse-card-hybrid {
        margin-bottom: 1rem;
    }
    
    .inventory-card-hybrid {
        margin-bottom: 1rem;
    }
    
    .stat-value-hybrid {
        font-size: 1.75rem;
    }
    
    .warehouse-stats {
        grid-template-columns: 1fr;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .inventory-card-hybrid {
        background: #1f2937;
        border-color: #4b5563;
    }
    
    .warehouse-card-hybrid {
        background: #1f2937;
        border-color: #4b5563;
    }
    
    .chart-placeholder {
        background: linear-gradient(135deg, #1f2937, #374151);
        border-color: #4b5563;
        color: #d1d5db;
    }
}

/* Mock Charts */
.mock-chart {
    width: 100%;
    height: 200px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.mock-chart.chart-animated {
    opacity: 1;
    transform: translateY(0);
}

.mock-chart-bar {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 100%;
    gap: 1rem;
    padding: 1rem;
}

.chart-bar {
    flex: 1;
    max-width: 60px;
    background: linear-gradient(180deg, var(--premium-blue), var(--premium-blue-dark));
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
    min-height: 20px;
    animation: growUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.chart-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--premium-gray-600);
    white-space: nowrap;
}

.chart-value {
    font-size: 0.8rem;
    font-weight: bold;
}

.mock-chart-pie {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.pie-chart {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: conic-gradient(
        #10b981 0deg 288deg,
        #f59e0b 288deg 342deg,
        #ef4444 342deg 360deg
    );
    animation: pieRotate 1s ease-out;
}

/* Shake animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes growUp {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--final-height, 100%);
        opacity: 1;
    }
}

@keyframes pieRotate {
    from {
        transform: rotate(-90deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* Form validation enhancements */
.form-group-hybrid.has-error .form-label {
    color: var(--premium-red);
}

.form-group-hybrid.has-error .form-control {
    border-color: var(--premium-red);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.is-invalid {
    border-color: var(--premium-red) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Modal enhancements */
.modal-open {
    overflow: hidden;
}

/* .modal-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Improved glassmorphism effect */
.inventory-card-hybrid,
.warehouse-card-hybrid {
    border: 1px solid #e5e7eb;
}

/* Button stilurile sunt moștenite din premium-unified-system.css */

/* Premium card shadows and depth */
.inventory-card-hybrid,
.warehouse-card-hybrid {
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Premium text gradients */
.page-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 3rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.page-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Premium search input */
.search-input-hybrid {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 12px 20px 12px 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-input-hybrid:focus {
    background: rgba(255,255,255,1);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: scale(1.02);
}

/* Premium filter selects */
.filter-select-hybrid {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 12px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.filter-select-hybrid:focus {
    background: rgba(255,255,255,1);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transform: scale(1.02);
}

/* Premium warehouse stats */
.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.9) 0%, 
        rgba(248,250,252,0.8) 100%);
    backdrop-filter: blur(2px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Premium Warehouse Details Page */
/* .breadcrumb-premium-hybrid stilurile sunt moștenite din premium-unified-system.css */

.breadcrumb-link-hybrid {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-link-hybrid:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* .warehouse-header-hybrid stilurile sunt moștenite din premium-unified-system.css */

.warehouse-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.warehouse-info-section {
    flex: 1;
}

.warehouse-title-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.warehouse-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    backdrop-filter: blur(2px);
}

.warehouse-title-content h1.warehouse-title-hybrid {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.warehouse-name-hybrid {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warehouse-meta-hybrid {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.95;
}

.warehouse-meta-hybrid span {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.warehouse-actions-hybrid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Enhanced Stats Grid for Warehouse */
.warehouse-stats-grid {
    margin-bottom: 3rem;
}

.stat-icon-hybrid {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.stat-card-hybrid.stat-primary .stat-icon-hybrid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.stat-card-hybrid.stat-success .stat-icon-hybrid {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.stat-card-hybrid.stat-warning .stat-icon-hybrid {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.stat-card-hybrid.stat-info .stat-icon-hybrid {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.stat-content-hybrid {
    flex: 1;
    text-align: center;
}

.stat-value-hybrid {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label-hybrid {
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-trend-hybrid {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-trend-hybrid.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.stat-trend-hybrid.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.stat-trend-hybrid.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.stat-trend-hybrid.info {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

/* Tabs Section */
.tabs-section-hybrid {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98) 0%, 
        rgba(248,250,252,0.95) 100%);
    backdrop-filter: blur(3px);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
}

.tabs-header-hybrid {
    margin-bottom: 2rem;
}

/* .premium-nav-tabs stilurile sunt moștenite din premium-unified-system.css */

.premium-tab-content {
    padding: 2rem 0;
}

.tab-header-hybrid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.tab-title-hybrid {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-actions-hybrid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Search and Filter Section */
.search-filter-section-hybrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: end;
}

.search-box-hybrid {
    position: relative;
}

.input-group-hybrid {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-text-hybrid {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    z-index: 2;
    font-size: 1rem;
}

/* Form Control stilurile sunt moștenite din premium-unified-system.css */

.filter-box-hybrid {
    position: relative;
}

.form-select-hybrid {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.form-select-hybrid:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Premium Table */
/* STILURILE SUNT MOȘTENITE DIN premium-unified-system.css */
/* Pentru a evita duplicările, aceste stiluri sunt definite în fișierul principal */

.table-row-hybrid {
    /* Additional styles for table rows if needed */
}

/* Loading States */
.loading-row-hybrid {
    background: rgba(248, 250, 252, 0.5);
}

.loading-spinner-hybrid {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--primary-color);
}

.skeleton-text-hybrid {
    height: 1rem;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.empty-state-hybrid {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.error-message-hybrid {
    text-align: center;
    padding: 2rem;
    color: var(--danger-color);
}

/* Action Buttons */
.action-buttons-hybrid {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Analytics Grid */
.analytics-grid-hybrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.chart-header-hybrid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: rgba(248, 250, 252, 0.5);
}

.chart-title-hybrid {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-actions-hybrid {
    display: flex;
    gap: 0.5rem;
}

.chart-placeholder-hybrid {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.95) 0%, 
        rgba(248,250,252,0.9) 50%, 
        rgba(226,232,240,0.85) 100%);
    border: 2px dashed #cbd5e0;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #64748b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-placeholder-hybrid:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, 
        rgba(219,234,254,0.95) 0%, 
        rgba(191,219,254,0.9) 50%, 
        rgba(147,197,253,0.85) 100%);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

.chart-icon-hybrid {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

.chart-label-hybrid {
    font-weight: 500;
    margin: 0;
    color: #64748b;
}

/* Alerts Container */
.alerts-container-hybrid {
    padding: 1.5rem;
}

.alert-warning-hybrid {
    background: linear-gradient(135deg, 
        rgba(254, 243, 199, 0.9) 0%, 
        rgba(253, 230, 138, 0.8) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sub-tabs styling */
.premium-subtabs {
    border: none;
    margin-top: 1rem;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.premium-subtabs .nav-link {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.08) 0%, 
        rgba(118, 75, 162, 0.08) 100%);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 25px;
    color: #667eea;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-subtabs .nav-link:hover {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.15) 0%, 
        rgba(118, 75, 162, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.premium-subtabs .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
    transform: translateY(-1px);
}

/* Warehouse Actions Row */
.warehouse-actions-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

/* Diferenta Stats Grid */
.diferenta-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.stat-card-diferenta {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.95) 0%, 
        rgba(248,250,252,0.9) 100%);
    backdrop-filter: blur(2px);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-card-diferenta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.stat-card-diferenta .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-card-diferenta .stat-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Buttons Row */
.filter-buttons-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem;
}

.filter-buttons-row .btn {
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.filter-buttons-row .btn.active {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Sub-tabs container */
.sub-tabs-container {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.sub-tab-content {
    margin-top: 1.5rem;
}

.sub-tab-title {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

/* Enhanced premium-subtabs for sub-tabs */
#exactReturSubTabs.premium-subtabs {
    margin-bottom: 1.5rem;
    justify-content: center;
}

#exactReturSubTabs.premium-subtabs .nav-link {
    margin: 0 0.25rem;
    font-size: 0.875rem;
    padding: 8px 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .warehouse-actions-row {
        flex-direction: column;
        align-items: center;
    }
    
    .warehouse-actions-row .btn {
        width: 100%;
        max-width: 200px;
        margin-bottom: 0.5rem;
    }
    
    .diferenta-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .filter-buttons-row {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-buttons-row .btn {
        width: 100%;
        max-width: 150px;
        margin-bottom: 0.5rem;
    }
    
    .sub-tabs-container {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    #exactReturSubTabs.premium-subtabs {
        flex-direction: column;
        align-items: center;
    }
    
    #exactReturSubTabs.premium-subtabs .nav-link {
        margin: 0.25rem 0;
        width: 100%;
        max-width: 200px;
    }
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, 
        rgba(255,255,255,1) 0%, 
        rgba(248,250,252,0.95) 100%);
}

.stat-item.warning {
    background: linear-gradient(135deg, 
        rgba(254,243,199,0.9) 0%, 
        rgba(253,230,138,0.8) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-item.warning:hover {
    background: linear-gradient(135deg, 
        rgba(254,243,199,1) 0%, 
        rgba(253,230,138,0.95) 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.stat-item.warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.stat-item.warning:hover .stat-icon {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.warehouse-icon {
    width: 60px;
}

/* ===== STILURI PENTRU SUB-TAB-URILE DIN STOCURI INIȚIALE ===== */
.sub-tabs-content {
    margin-top: 2rem;
}

/* ===== CONTAINER PRINCIPAL PENTRU SUB-TAB-URI ===== */
.sub-tabs-container {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    left: 0;
    right: 0;
}

.sub-tabs-container .premium-subtabs {
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
    left: 0;
}

/* Ensure consistent positioning for all sub-tab sets */
#stocuriInitialeSubTabs,
#exactReturSubTabs {
    position: relative;
    left: 0;
    margin-left: 0;
    padding-left: 0;
}

/* Force sub-tabs to align with main tabs */
.sub-tabs-container {
    transform: translateX(0);
    margin-left: 0;
    padding-left: 0;
}

.sub-tabs-container .nav-pills {
    margin-left: 0;
    padding-left: 0;
}

/* Ensure sub-tabs start from the same position as main tabs */
.sub-tabs-container .premium-subtabs {
    transform: translateX(0);
    margin-left: 0;
    padding-left: 0;
}

/* Force consistent positioning for sub-tabs */
.sub-tabs-container {
    position: relative;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    clear: both;
}

/* Ensure sub-tabs are positioned relative to their parent container */
.tab-pane {
    position: relative;
}

/* Override any Bootstrap positioning that might interfere */
.nav-pills {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.nav-pills .nav-item {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.nav-pills .nav-link {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Force sub-tabs to start from the same horizontal position */
.sub-tabs-container .premium-subtabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.sub-tabs-container .premium-subtabs .nav-item:first-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Ensure sub-tabs are positioned consistently */
.sub-tabs-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-top: 1px solid var(--border-color, #e2e8f0);
    padding-top: 1rem;
}

/* Force consistent left alignment */
.sub-tabs-container .nav-pills {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left;
}

.sub-tabs-container .nav-pills .nav-item {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.sub-tabs-container .nav-pills .nav-link {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left;
}

/* Ensure sub-tabs are positioned exactly where main tabs start */
.sub-tabs-container {
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    padding-left: 0;
}

/* Force sub-tabs to align with main tabs */
.sub-tabs-container .premium-subtabs {
    position: relative;
    left: 0;
    margin-left: 0;
    padding-left: 0;
}

/* Override any potential Bootstrap positioning */
.sub-tabs-container .nav-pills {
    position: relative;
    left: 0;
    transform: none;
}

.sub-tab-pane {
    animation: fadeInUp 0.3s ease-out;
}

.sub-tab-pane:not([style*="display: block"]) {
    display: none !important;
}

/* Stiluri pentru tabelele din sub-tab-uri */
.sub-tab-pane .table-section-hybrid {
    margin-top: 1rem;
}

/* .sub-tab-pane .premium-table-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Stiluri pentru badge-uri și status */
.category-badge-hybrid {
    background: linear-gradient(135deg, var(--primary-color, #667eea), var(--secondary-color, #764ba2));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.quantity-display-hybrid {
    font-weight: 600;
    color: var(--text-primary, #2d3748);
    font-size: 1rem;
}

.price-display-hybrid {
    font-weight: 600;
    color: var(--success-color, #48bb78);
    font-size: 0.95rem;
}

.value-display-hybrid {
    font-weight: 700;
    color: var(--primary-color, #667eea);
    font-size: 1rem;
}

.date-display-hybrid {
    color: var(--text-secondary, #a0aec0);
    font-size: 0.85rem;
}

/* Stiluri pentru butoanele de acțiune */
.action-buttons-hybrid {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Button stilurile sunt moștenite din premium-unified-system.css */

/* Responsive pentru sub-tab-uri */
@media (max-width: 768px) {
    /* .sub-tab-pane .premium-table-hybrid stilurile sunt moștenite din premium-unified-system.css */
    
    .action-buttons-hybrid {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    /* Button stilurile sunt moștenite din premium-unified-system.css */
}
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-white);
    font-size: 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.warehouse-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255,255,255,0.3), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.warehouse-card-hybrid:hover .warehouse-icon::before {
    opacity: 1;
}

.warehouse-card-hybrid:hover .warehouse-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Status indicators */
/* .badge-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Improved responsive grid */
@media (max-width: 1200px) {
    .warehouse-grid-hybrid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 900px) {
    .warehouse-grid-hybrid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Advanced hover effects */
.warehouse-card-hybrid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.warehouse-card-hybrid:hover::after {
    opacity: 1;
}

/* Print styles */
@media print {
    .warehouse-card-hybrid,
    .inventory-card-hybrid {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
        background: white !important;
    }
    
    .btn-hybrid,
    .warehouse-actions,
    .header-actions,
    .warehouse-controls {
        display: none;
    }
    
    .chart-placeholder {
        background: #f5f5f5;
        border: 1px solid #ddd;
    }
}

/* ===== STILURI PENTRU MODALELE DE IMPORT ===== */

.import-section-hybrid {
    padding: 1rem 0;
}

.upload-area-hybrid {
    margin-bottom: 2rem;
}

.upload-zone-hybrid {
    border: 2px dashed var(--primary-color, #667eea);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(102, 126, 234, 0.05));
}

.upload-zone-hybrid:hover {
    border-color: var(--accent-color, #f093fb);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.upload-zone-hybrid i {
    color: var(--primary-color, #667eea);
    margin-bottom: 1rem;
}

.upload-zone-hybrid h6 {
    color: var(--text-primary, #2d3748);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.upload-zone-hybrid p {
    color: var(--text-secondary, #718096);
    margin: 0;
    font-size: 0.9rem;
}

.mapping-section-hybrid {
    background: var(--bg-secondary, #f7fafc);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color, #e2e8f0);
}

.mapping-section-hybrid h6 {
    color: var(--text-primary, #2d3748);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mapping-container-hybrid {
    padding: 1rem 0;
}

.search-section-hybrid {
    margin-bottom: 1.5rem;
}

.mapping-table-hybrid {
    background: var(--bg-primary, #ffffff);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color, #e2e8f0);
}

.mapping-table-hybrid .table {
    margin: 0;
}

.mapping-table-hybrid .table th {
    background: var(--bg-secondary, #f7fafc);
    border-bottom: 2px solid var(--border-color, #e2e8f0);
    font-weight: 600;
    color: var(--text-primary, #2d3748);
    padding: 1rem;
}

.mapping-table-hybrid .table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.mapping-table-hybrid .form-select {
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-primary, #ffffff);
    color: var(--text-primary, #2d3748);
    font-size: 0.9rem;
}

.mapping-table-hybrid .form-select:focus {
    border-color: var(--primary-color, #667eea);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Preview tables styling */
#menuPreviewTable,
#salesPreviewTable,
#declaredPreviewTable {
    background: var(--bg-primary, #ffffff);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color, #e2e8f0);
}

#menuPreviewTable th,
#salesPreviewTable th,
#declaredPreviewTable th {
    background: var(--bg-secondary, #f7fafc);
    color: var(--text-primary, #2d3748);
    font-weight: 600;
    padding: 0.75rem;
    font-size: 0.9rem;
}

#menuPreviewTable td,
#salesPreviewTable td,
#declaredPreviewTable td {
    padding: 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
    font-size: 0.9rem;
}

/* Badge styling for preview tables */
.badge.bg-success {
    background-color: #10b981 !important;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge.bg-danger {
    background-color: #ef4444 !important;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Modal size adjustments */
.modal-large .modal-content-hybrid {
    max-width: 90%;
    width: 90%;
    max-height: 90vh;
}

.modal-large .modal-body-hybrid {
    max-height: 70vh;
    overflow-y: auto;
}

/* Responsive adjustments for import modals */
@media (max-width: 768px) {
    .modal-large .modal-content-hybrid {
        max-width: 95%;
        width: 95%;
        margin: 1rem;
    }
    
    .upload-zone-hybrid {
        padding: 2rem 1rem;
    }
    
    .upload-zone-hybrid i {
        font-size: 2rem;
    }
    
    .upload-zone-hybrid h6 {
        font-size: 1rem;
    }
    
    .mapping-section-hybrid {
        padding: 1rem;
    }
    
    .mapping-table-hybrid .table th,
    .mapping-table-hybrid .table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .mapping-table-hybrid .form-select {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
}

/* ===================================
   PREMIUM MODAL TABLE STYLES
   Stiluri premium pentru tabelele din modaluri
   =================================== */

/* Modal Table stilurile sunt moștenite din premium-unified-system.css */

/* Modal Table stilurile sunt moștenite din premium-unified-system.css */

/* Modal Table stilurile sunt moștenite din premium-unified-system.css */

/* Modal Table stilurile responsive sunt moștenite din premium-unified-system.css */

/* ===================================
   PREMIUM WAREHOUSE DETAILS PAGE STYLES
   Stiluri premium complete pentru pagina de detalii depozite
   =================================== */

/* Premium Warehouse Header */
/* .warehouse-header-hybrid stilurile sunt moștenite din premium-unified-system.css */

.warehouse-title-hybrid {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.warehouse-meta-hybrid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Badge stilurile sunt moștenite din premium-unified-system.css */

/* Stats Grid stilurile sunt moștenite din premium-unified-system.css */

/* Premium Breadcrumb */
/* .breadcrumb-premium-hybrid stilurile sunt moștenite din premium-unified-system.css */

.breadcrumb-link-hybrid {
    color: var(--primary-color, #667eea);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-link-hybrid:hover {
    color: var(--accent-color, #764ba2);
    transform: translateX(2px);
}

/* Premium Buttons */
/* .btn-hybrid stilurile sunt moștenite din premium-unified-system.css */

/* Premium Table Container */
.table-container-premium {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 2rem;
}

.table-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.table-title-premium {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary, #2d3748);
}

/* Premium Search and Filter */
.search-filter-premium {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input-premium {
    flex: 1;
    min-width: 300px;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-premium:focus {
    outline: none;
    border-color: var(--primary-color, #667eea);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Premium Pagination */
.pagination-premium {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-link-premium {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 0.5rem;
    color: var(--text-primary, #2d3748);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link-premium:hover,
.page-link-premium.active {
    background: var(--primary-color, #667eea);
    color: white;
    border-color: var(--primary-color, #667eea);
}

/* Premium Loading States */
.loading-skeleton-premium {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
    border-radius: 0.5rem;
    height: 1rem;
    margin-bottom: 0.5rem;
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

/* Premium Responsive Design */
@media (max-width: 768px) {
    .warehouse-header-hybrid {
        padding: 1.5rem;
    }
    
    .warehouse-title-hybrid {
        font-size: 2rem;
    }
    
    .stats-grid-hybrid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .warehouse-meta-hybrid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .search-filter-premium {
        flex-direction: column;
    }
    
    .search-input-premium {
        min-width: 100%;
    }
}