/* ===== Modern Sidebar Styling ===== */
.sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: #ffffff;
    border-right: 1px solid #e6e9ef;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

/* Logo area */
.sidebar-wrapper .logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f1f3f6;
}

.sidebar-wrapper .logo-wrapper img {
    max-height: 38px;
}

/* Sidebar Links */
.sidebar-main {
    padding: 15px 0;
}

.sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-links li {
    position: relative;
}

.sidebar-links li a.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.sidebar-links li a.sidebar-link i {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    color: #6c757d;
}

/* Hover + Active */
.sidebar-links li a.sidebar-link:hover,
.sidebar-links li a.sidebar-link.active {
    background: #f5f7fb;
    color: #007bff;
    border-left-color: #007bff;
}

.sidebar-links li a.sidebar-link:hover i,
.sidebar-links li a.sidebar-link.active i {
    color: #007bff;
}

/* Submenu */
.sidebar-submenu {
    display: none;
    background: #fafbfc;
}

.sidebar-list.open>.sidebar-submenu {
    display: block;
}

.sidebar-submenu li a {
    display: block;
    padding: 8px 45px;
    color: #666;
    font-size: 14px;
    transition: all 0.25s ease;
}

.sidebar-submenu li a:hover {
    color: #007bff;
    background: #f0f4ff;
}

/* Section Titles */
.sidebar-main-title h6 {
    font-size: 12px;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 0.5px;
    padding: 15px 20px 5px;
}

/* Scrollbar (custom look) */
.sidebar-wrapper::-webkit-scrollbar {
    width: 6px;
}

.sidebar-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

/* Collapsed sidebar */
.sidebar-wrapper.collapsed {
    width: 80px;
}

.sidebar-wrapper.collapsed .sidebar-links li a i {
    margin-right: 0;
    text-align: center;
    width: 100%;
}