/* ===================================
   ADMIN PANEL STYLES
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --dark-bg: #1e293b;
    --darker-bg: #0f172a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --sidebar-width: 280px;
    --header-height: 70px;
    --footer-height: 60px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===================================
   TOP HEADER
   =================================== */
.admin-top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.sidebar-toggle:hover {
    background: var(--light-bg);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-logo i {
    font-size: 1.2em; /* 1.2x the parent font-size, auto-adjusts with text */
}

.brand-logo-image {
    height: 1.2em; /* 1.2x the parent font-size, auto-adjusts with text */
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.header-center {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
}

.search-bar {
    position: relative;
    width: 100%;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-loading,
.search-error,
.search-no-results {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.search-results-list {
    max-height: 450px;
    overflow-y: auto;
}

.search-group {
    border-bottom: 1px solid var(--border-color);
}

.search-group:last-child {
    border-bottom: none;
}

.search-group-title {
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--light-bg);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.search-result-icon i {
    font-size: 1.1rem;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.search-footer {
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.search-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.search-footer a:hover {
    text-decoration: underline;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-item {
    position: relative;
}

.icon-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.icon-btn:hover {
    background: var(--light-bg);
    color: var(--text-primary);
}

.icon-btn .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.user-btn:hover {
    background: var(--light-bg);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.user-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.mark-read {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
}

.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.notification-item:hover {
    background: var(--light-bg);
}

.notification-item.unread {
    background: rgba(79, 70, 229, 0.05);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.notification-icon.orders { background: var(--primary-color); }
.notification-icon.stock { background: var(--warning-color); }
.notification-icon.users { background: var(--secondary-color); }

.notification-content {
    flex: 1;
}

.notification-content p {
    margin-bottom: 0.25rem;
}

.notification-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.notification-content small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.dropdown-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.dropdown-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.quick-actions-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.quick-actions-dropdown a:hover {
    background: var(--light-bg);
}

.quick-actions-dropdown i {
    width: 20px;
    color: var(--primary-color);
}

.user-dropdown-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.user-dropdown a:hover {
    background: var(--light-bg);
}

.user-dropdown a i {
    width: 20px;
    color: var(--text-secondary);
}

.user-dropdown hr {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.logout-link {
    color: var(--danger-color) !important;
}

/* ===================================
   SIDEBAR
   =================================== */
.admin-sidebar {
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background: var(--white);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    transition: all 0.3s;
    z-index: 999;
}

/* Ensure sidebar is visible on mobile when open */
@media (max-width: 768px) {
    .admin-sidebar {
        z-index: 1001;
    }
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.sidebar-nav {
    padding: 1.5rem 0;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section-title {
    display: block;
    padding: 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.nav-list {
    list-style: none;
}

.nav-item {
    margin-bottom: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    background: var(--light-bg);
    color: var(--text-primary);
}

.nav-item.active .nav-link {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.1), transparent);
    color: var(--primary-color);
    font-weight: 600;
}

.nav-item.active .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.nav-link i {
    width: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.nav-badge {
    margin-left: auto;
    background: var(--light-bg);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.nav-badge.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.sidebar-footer {
    position: sticky;
    bottom: 0;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.storage-info {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
}

.storage-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.storage-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.storage-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.3s, background 0.3s;
}

.storage-info small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Collapsed Sidebar */
.admin-sidebar.collapsed {
    width: 80px;
}

.admin-sidebar.collapsed .nav-section-title,
.admin-sidebar.collapsed .nav-link span,
.admin-sidebar.collapsed .nav-badge,
.admin-sidebar.collapsed .sidebar-footer {
    display: none;
}

.admin-sidebar.collapsed .nav-link {
    justify-content: center;
}

/* ===================================
   MAIN CONTENT
   =================================== */
.admin-main-content {
    margin-left: var(--sidebar-width);
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    padding: 2rem;
    transition: all 0.3s;
}

.admin-main-content.expanded {
    margin-left: 80px;
}

.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-secondary);
}

/* ===================================
   CARDS & COMPONENTS
   =================================== */
.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-body {
    padding: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-icon.primary { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); }
.stat-icon.success { background: linear-gradient(135deg, #10b981, #059669); }
.stat-icon.warning { background: linear-gradient(135deg, #f59e0b, #d97706); }
.stat-icon.danger { background: linear-gradient(135deg, #ef4444, #dc2626); }
.stat-icon.info { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===================================
   TABLES
   =================================== */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: var(--light-bg);
}

.table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.table tbody tr:hover {
    background: var(--light-bg);
}

/* ===================================
   FORMS
   =================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-success {
    background: var(--secondary-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--light-bg);
}

/* ===================================
   FOOTER
   =================================== */
.admin-footer {
    margin-left: var(--sidebar-width);
    height: var(--footer-height);
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 2rem;
    transition: all 0.3s;
}

.admin-sidebar.collapsed ~ .admin-footer {
    margin-left: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-left a,
.footer-right a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-left a:hover,
.footer-right a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--border-color);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .header-center {
        max-width: 400px;
    }
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.sidebar-overlay[style*="block"] {
    opacity: 1;
}

/* Show overlay only on mobile */
@media (min-width: 769px) {
    .sidebar-overlay {
        display: none !important;
    }
}

/* Tablet and below */
@media (max-width: 1024px) {
    .header-center {
        max-width: 300px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .admin-top-header {
        padding: 0 0.75rem;
        height: var(--header-height);
    }
    
    .header-left {
        gap: 0.75rem;
        flex: 1;
        min-width: 0;
    }
    
    .sidebar-toggle {
        font-size: 1.25rem;
        padding: 0.4rem;
        flex-shrink: 0;
    }
    
    .brand-logo {
        font-size: 1rem;
        gap: 0.5rem;
        min-width: 0;
        flex: 1;
    }
    
    .brand-logo i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .brand-logo .brand-text {
        display: none; /* Hide logo text on mobile, show only icon */
    }
    
    .header-center {
        display: none;
    }
    
    .header-right {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .header-item {
        flex-shrink: 0;
    }
    
    .icon-btn {
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    .user-btn {
        padding: 0.25rem;
        gap: 0;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .user-info {
        display: none; /* Hide user name and role text on mobile */
    }
    
    .user-btn .fa-chevron-down {
        display: none;
    }
    
    /* Adjust dropdown position for mobile */
    .user-dropdown {
        right: 0.5rem;
        min-width: 260px;
        max-width: calc(100vw - 1rem);
    }
    
    /* Mobile Sidebar Styles */
    .admin-sidebar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: var(--sidebar-width);
        max-width: 85vw;
        height: calc(100vh - var(--header-height));
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        background: var(--white);
    }
    
    .admin-sidebar.mobile-open {
        transform: translateX(0) !important;
    }
    
    /* Mobile Close Button */
    .sidebar-close-mobile {
        display: none;
    }
    
    @media (max-width: 768px) {
        .sidebar-close-mobile {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: var(--light-bg);
            border: none;
            border-radius: 50%;
            color: var(--text-primary);
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }
        
        .sidebar-close-mobile:hover {
            background: var(--border-color);
            transform: scale(1.1);
        }
        
        .admin-sidebar .sidebar-nav {
            padding-top: 3.5rem;
        }
    }
    
    .admin-main-content {
        margin-left: 0;
        margin-top: var(--header-height);
        padding: 1rem;
    }
    
    .admin-footer {
        margin-left: 0;
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-left,
    .footer-right {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .separator {
        display: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .admin-top-header {
        padding: 0 0.5rem;
    }
    
    .header-left {
        gap: 0.5rem;
    }
    
    .sidebar-toggle {
        font-size: 1.1rem;
        padding: 0.35rem;
    }
    
    .brand-logo i {
        font-size: 1rem;
    }
    
    .icon-btn {
        font-size: 1rem;
        padding: 0.35rem;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .admin-sidebar {
        max-width: 90vw;
    }
}
