/* Sidebar system removed. This file is intentionally left blank. */
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.portal-quick-link:hover {
    color: #4a90e2;
    transform: translateX(3px);
}

.portal-quick-link i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

/* Responsive sidebar */
@media (max-width: 768px) {
    .sidebar {
        width: 280px;
        left: -280px;
    }
    
    .sidebar nav a {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Main content adjustments when sidebar is visible */
.main {
    transition: margin-left 0.3s ease-in-out;
}

@media (min-width: 1200px) {
    .sidebar-always-visible .sidebar {
        left: 0;
        position: relative;
        top: 0;
        height: auto;
        box-shadow: none;
        border-right: none;
        width: 250px;
        flex-shrink: 0;
    }
    
    .sidebar-always-visible .main {
        margin-left: 0;
    }
    
    .sidebar-always-visible .page-wrapper {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Overlay for mobile */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}