/* ============================================
   Modern Dashboard Styling - Sweet & Professional
   ============================================ */

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid #e9ecef !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-header-title {
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.page-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.page-header-icon i {
    font-size: 1.5rem;
}

/* ===== Stat Cards ===== */
.stat-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 16px !important;
    background: white;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

/* Stat Icons */
.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
}

/* Table Thumbnail */
.table-thumbnail {
    width: 60px;
    height: 60px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table-thumbnail-sm {
    width: 50px;
    height: 50px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Color variations with gradients */
.stat-icon-primary {
    background: linear-gradient(135deg, rgba(0, 97, 242, 0.15) 0%, rgba(0, 97, 242, 0.25) 100%);
    color: #0061f2;
    box-shadow: 0 4px 15px rgba(0, 97, 242, 0.2);
}

.stat-icon-success {
    background: linear-gradient(135deg, rgba(0, 172, 105, 0.15) 0%, rgba(0, 172, 105, 0.25) 100%);
    color: #00ac69;
    box-shadow: 0 4px 15px rgba(0, 172, 105, 0.2);
}

.stat-icon-warning {
    background: linear-gradient(135deg, rgba(244, 161, 0, 0.15) 0%, rgba(244, 161, 0, 0.25) 100%);
    color: #f4a100;
    box-shadow: 0 4px 15px rgba(244, 161, 0, 0.2);
}

.stat-icon-info {
    background: linear-gradient(135deg, rgba(0, 207, 213, 0.15) 0%, rgba(0, 207, 213, 0.25) 100%);
    color: #00cfd5;
    box-shadow: 0 4px 15px rgba(0, 207, 213, 0.2);
}

/* ===== Card Styling ===== */
.card {
    border-radius: 16px !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Card Header Styling */
.card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #e9ecef;
    border-radius: 16px 16px 0 0 !important;
    padding: 1.25rem 1.5rem;
}

.card-header h5 {
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.card-header i {
    font-size: 1.25rem;
    margin-right: 8px;
}

/* Card Footer */
.card-footer {
    border-radius: 0 0 16px 16px !important;
    background: rgba(248, 249, 250, 0.5);
}

.card-footer a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.card-footer a:hover {
    transform: translateX(4px);
}

/* ===== Hover Card List Items ===== */
.hover-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    border-radius: 8px;
}

.hover-card:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left-color: #667eea;
    padding-left: calc(1rem + 4px) !important;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== Table Enhancements ===== */
.generic-table-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.table {
    margin-bottom: 0;
}

.table thead th {
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    color: #2c3e50;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f5;
}

.table tbody tr:last-child td {
    border-bottom: none;
}


/* ===== Badge Styling ===== */
.badge {
    border-radius: 8px;
    padding: 0.5rem 0.875rem;
    font-weight: 600;
    font-size: 0.8125rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card,
.card,
.generic-table-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.table-light {
    background-color: #f5f7fa !important;
}

/* Badge Styling */
.badge {
    padding: 0.4rem 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.badge.rounded-pill {
    border-radius: 50px !important;
}

/* Button Enhancements */
.btn-outline-primary,
.btn-outline-secondary {
    transition: all 0.2s ease;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover {
    transform: translateY(-2px);
}

/* Loading Spinner */
.spinner-border {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Empty State */
.bi.fs-2 {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

/* Quick Statistics */
.quick-stat-item {
    padding: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.quick-stat-item:hover {
    background-color: #f0f2f5;
    transform: scale(1.02);
}

/* Page Header Enhancements */
.page-header-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f2f6fc;
    color: #0061f2;
}

/* Progress Bar Enhancements */
.progress {
    background-color: #f0f2f5;
    border-radius: 4px;
}

.progress-bar {
    transition: width 0.6s ease;
    background: linear-gradient(90deg, #0061f2, #0051d4);
}

.progress-bar.bg-success {
    background: linear-gradient(90deg, #00ac69, #008552) !important;
}

.progress-bar.bg-warning {
    background: linear-gradient(90deg, #f4a100, #cc8200) !important;
}

.progress-bar.bg-info {
    background: linear-gradient(90deg, #00cfd5, #00a9af) !important;
}

/* Alert Styling Enhancements */
.alert {
    border: 0;
    border-left: 4px solid;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.alert-info {
    border-left-color: #00cfd5;
    background-color: rgba(0, 207, 213, 0.05);
}

.alert-warning {
    border-left-color: #f4a100;
    background-color: rgba(244, 161, 0, 0.05);
}

.alert-success {
    border-left-color: #00ac69;
    background-color: rgba(0, 172, 105, 0.05);
}

.alert:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Action Buttons */
.btn-outline-primary,
.btn-outline-success,
.btn-outline-warning,
.btn-outline-info {
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-outline-primary:hover {
    background-color: #0061f2;
    border-color: #0061f2;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 97, 242, 0.2);
}

.btn-outline-success:hover {
    background-color: #00ac69;
    border-color: #00ac69;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 172, 105, 0.2);
}

.btn-outline-warning:hover {
    background-color: #f4a100;
    border-color: #f4a100;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(244, 161, 0, 0.2);
}

.btn-outline-info:hover {
    background-color: #00cfd5;
    border-color: #00cfd5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 207, 213, 0.2);
}

/* Quick Action Buttons */
.btn span {
    transition: all 0.2s ease;
}

.btn:hover span {
    font-weight: 600;
}

/* Platform Overview Icons */
.fs-3 {
    transition: transform 0.3s ease;
}

.card:hover .fs-3 {
    transform: scale(1.1) rotate(5deg);
}

/* Performance Card Styling */
.card-header i {
    transition: all 0.3s ease;
}

.card:hover .card-header i {
    transform: rotate(-10deg);
}

/* Badge Enhancements */
.badge {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Review Status Distribution */
.review-status-item {
    padding: 12px;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

.review-status-item:hover {
    background-color: #f0f2f5;
    transform: scale(1.02);
}

/* System Health Indicator */
.health-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.health-indicator.healthy {
    background-color: #00ac69;
}

.health-indicator.warning {
    background-color: #f4a100;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Notification & Alerts Section */
.alert-box {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alert-box:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Text Animation */
.fw-semibold {
    transition: color 0.2s ease;
}

.alert:hover .fw-semibold {
    color: inherit;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-body {
        padding: 1rem !important;
    }
    
    .page-header-title h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .progress {
        height: 6px !important;
    }
    
    .fs-3 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .stat-card .card-body {
        padding: 1.25rem !important;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

/* Smooth Transitions */
.stat-card,
.card,
.btn,
.badge,
.table-hover tbody tr {
    transition: all 0.2s ease;
}

/* Button and Link Hover States */
a:hover {
    text-decoration: none;
}

.btn:not(.btn-icon) {
    transition: all 0.2s ease;
}

/* Card Enhancements */
.card {
    border-radius: 8px;
    margin-bottom: 0;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e5ec;
}

/* Row Gap Optimization */
.row.g-3 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.row.g-3 > .col-lg-6,
.row.g-3 > .col-lg-4,
.row.g-3 > .col-md-6,
.row.g-3 > .col-xl-3 {
    margin-bottom: 0.5rem;
}

/* Alert Styling */
.bg-warning.bg-opacity-10 {
    background-color: rgba(244, 161, 0, 0.1) !important;
    border: 1px solid rgba(244, 161, 0, 0.2);
    border-radius: 8px;
}

.bg-warning.bg-opacity-10 .text-warning {
    color: #cc8200 !important;
}

/* Stats Grid */
.quick-stat-item {
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
}

/* Icon Styling */
i.bi {
    transition: all 0.2s ease;
}

.stat-card:hover i.bi {
    transform: rotate(-5deg);
}

/* ============================================
   Home Dashboard Specific Styles
   ============================================ */

/* Dashboard Card */
.dashboard-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
}

.dashboard-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Gradient Stat Cards */
.stat-card.primary { --bg-start: #4e73df; --bg-end: #224abe; }
.stat-card.success { --bg-start: #1cc88a; --bg-end: #13855c; }
.stat-card.warning { --bg-start: #f6c23e; --bg-end: #dda20a; }
.stat-card.danger { --bg-start: #e74a3b; --bg-end: #be2617; }
.stat-card.info { --bg-start: #36b9cc; --bg-end: #258391; }
.stat-card.purple { --bg-start: #6f42c1; --bg-end: #4a2c82; }

.stat-card.primary,
.stat-card.success,
.stat-card.warning,
.stat-card.danger,
.stat-card.info,
.stat-card.purple {
    background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card.primary::before,
.stat-card.success::before,
.stat-card.warning::before,
.stat-card.danger::before,
.stat-card.info::before,
.stat-card.purple::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 2.5rem;
    opacity: 0.3;
}

/* Pending Items */
.pending-item {
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fc;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    border-left: 4px solid #f6c23e;
}

.pending-item:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

/* Venue Items */
.venue-item {
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fc;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    border-left: 4px solid #1cc88a;
}

.venue-item:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.welcome-banner h4,
.welcome-banner p {
    position: relative;
    z-index: 1;
}

/* Action Buttons */
.action-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.action-btn:hover {
    transform: scale(1.05);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #858796;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    margin-bottom: 0.5rem;
}

/* Badge Pulse Animation */
.badge-pulse {
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Card Header Styling for Dashboard */
.dashboard-card .card-header {
    background: white;
    border-bottom: 1px solid #e3e6f0;
    padding: 1rem 1.25rem;
}

.dashboard-card .card-header h6 {
    font-weight: 600;
    color: #5a5c69;
    margin: 0;
}

.dashboard-card .card-body {
    padding: 1.25rem;
}

/* Scrollable Card Body */
.dashboard-card .card-body[style*="overflow-y"] {
    scrollbar-width: thin;
    scrollbar-color: #d1d3e2 #f8f9fc;
}

.dashboard-card .card-body[style*="overflow-y"]::-webkit-scrollbar {
    width: 6px;
}

.dashboard-card .card-body[style*="overflow-y"]::-webkit-scrollbar-track {
    background: #f8f9fc;
    border-radius: 3px;
}

.dashboard-card .card-body[style*="overflow-y"]::-webkit-scrollbar-thumb {
    background: #d1d3e2;
    border-radius: 3px;
}

.dashboard-card .card-body[style*="overflow-y"]::-webkit-scrollbar-thumb:hover {
    background: #b7b9cc;
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .welcome-banner {
        padding: 1.25rem 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .welcome-banner {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .welcome-banner h4 {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .pending-item,
    .venue-item {
        padding: 0.75rem;
    }
}

/* ============================================
   LAYOUT STYLES (Header, Sidebar, Footer)
   ============================================ */

/* Admin Wrapper */
.admin-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#layoutSidenav_content {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
}

.main-content {
    flex: 1;
    background-color: #f8f9fc;
}

.content-wrapper {
    padding-bottom: 2rem;
}

/* Admin Footer */
.admin-footer {
    background: white;
    border-top: 1px solid #e3e6f0;
    margin-top: auto;
}

/* ===== HEADER / TOPNAV ===== */
.topnav {
    height: 60px;
    border-bottom: 1px solid #e3e6f0 !important;
}

.brand-text {
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.user-avatar-lg {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.user-info {
    min-width: 120px;
    max-width: 180px;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 0.8rem;
    color: #6c757d;
    white-space: nowrap;
}

/* User dropdown button styles */
.dropdown-user .btn.dropdown-toggle {
    transition: all 0.2s ease;
}

.dropdown-user .btn.dropdown-toggle:hover {
    background: rgba(102, 126, 234, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.25) !important;
    transform: translateY(-1px);
}

.dropdown-user .btn.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.dropdown-header-custom {
    border-radius: 0.5rem 0.5rem 0 0;
}

/* ===== SIDEBAR / SIDENAV ===== */
.sidenav-light {
    background: white;
}

.sidenav-menu-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a7aeb8;
    padding: 1.25rem 1rem 0.5rem;
}

.sidenav .nav-link {
    padding: 0.65rem 1rem;
    color: #5a5c69;
    font-weight: 500;
    font-size: 0.875rem;
    margin: 2px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sidenav .nav-link:hover {
    background-color: #f8f9fc;
    color: #4e73df;
}

.sidenav .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
}

.sidenav .nav-link.active .nav-link-icon i {
    color: white !important;
}

.nav-link-icon {
    width: 24px;
    margin-right: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link-icon i {
    font-size: 1rem;
    color: #858796;
    transition: color 0.2s ease;
}

.sidenav .nav-link:hover .nav-link-icon i {
    color: #4e73df;
}

.sidenav-menu-nested .nav-link {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    font-size: 0.8rem;
}

.sidenav-collapse-arrow {
    margin-left: auto;
}

.sidenav-collapse-arrow i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-link[aria-expanded="true"] .sidenav-collapse-arrow i {
    transform: rotate(180deg);
}

.sidenav-footer {
    padding: 1rem;
    border-top: 1px solid #e3e6f0;
    background: #f8f9fc;
}

.footer-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.footer-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #2c3e50;
    line-height: 1.2;
}

.footer-role {
    font-size: 0.7rem;
    color: #858796;
}

