/* Modern SaaS Sidebar Styles */
.modern-sidebar {
    background-color: #ffffff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 260px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    transition: transform 0.3s ease;
    padding: 1.5rem;
}

.modern-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.modern-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.modern-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s ease;
}

.modern-sidebar-link:hover, .modern-sidebar-link.active {
    background-color: #f3f4f6;
    color: #4f46e5;
}

.modern-sidebar-footer {
    border-t: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .modern-sidebar {
        transform: translateX(-100%);
    }
    .modern-sidebar.open {
        transform: translateX(0);
    }
}
