.sidebar {
    position: fixed;
    left: 0;
    top: 100px;
    width: 240px;
    height: calc(100vh - 100px);
    background: white;
    padding: 24px 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar-item:hover {
    color: #6b7280;
}

.sidebar-item.active {
    color: #000000;
}

.sidebar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke-width: 1.5;
}

.sidebar-divider {
    display: none;
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0;
}

.sidebar-item-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        right: -100%;
        left: auto;
        top: 0;
        width: 280px;
        height: 100vh;
        background: white;
        z-index: 999;
        transition: right 0.3s ease;
        padding-top: 100px;
    }
    
    .sidebar.active {
        right: 0;
    }
    
    .sidebar-item-mobile {
        display: flex;
    }
}