/* Sidebar styles */
.sidebar {
    transition: all 0.3s ease-in-out;
}

.sidebar-item {
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    border-radius: 0.375rem;
    gap: 0.75rem;
}

.sidebar-item:hover {
    transform: translateX(5px);
}

.sidebar-item i {
    width: 1.5rem;
    text-align: center;
}

.sidebar-item.active {
    background-color: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    font-weight: 500;
}

.sidebar-item.active i {
    color: #1d4ed8;
}

/* Mobile sidebar toggle */
.sidebar-toggle {
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #1d4ed8;
        color: white;
        z-index: 40;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;
        z-index: 30;
        transform: translateX(-100%);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 20;
        display: none;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
} 