﻿.blur-content {
    filter: blur(4px);
    transition: filter 0.3s ease;
    pointer-events: none; /* Prevent interaction when blurred */
}

.sidebar {
    width: 300px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(0);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    z-index: 999;
}

.sidebar.collapsed {
    transform: translateX(100%);
}

/* Toggle Button */
.toggle-btn {
   /* position: fixed; */
    top: 10px;
    right: 310px;
    z-index: 1000;
    transition: right 0.3s ease;
}

.toggle-btn.collapsed {
    right: 20px;
}

/* Navigation Links */
.nav-link {
    color: #4b5563;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    font-weight: 600;
}

.nav-link:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.nav-link.active {
    background: #e5e7eb;
    color: #1f2937;
    font-weight: 500;
}

/* Sidebar Header */
.sidebar-header {
    border-bottom: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
    }

    .toggle-btn {
        right: 20px;
    }
}

.navbar .nav-link {
    font-size: 16px;
    color: cornflowerblue;
}

.admin-navbar .nav-link span:hover {
    color: black !important;
}

.admin-navbar .nav-link:hover {
    color: black !important;
}
