/* Dashboard Layout with Sidebar */
.dashboard-wrapper {
    display: flex;
    min-height: calc(100vh - 200px);
    width: 100%;
    margin: 0;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: #f8f9fa;
    padding: 2rem 1rem;
    border-right: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #5f6368;
    font-size: 0.95rem;
    font-weight: 400;
}

.sidebar-btn:hover {
    background: #e8eaed;
    color: #202124;
}

.sidebar-btn.active {
    background: #d3e3fd;
    color: #1967d2;
}

.sidebar-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dashboard-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 1rem;
    }
    
    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
    }
    
    .sidebar-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}