.sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .sidebar h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-list a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .sidebar-list a:hover {
            color: var(--primary);
        }
        
        .sidebar-list i {
            margin-right: 10px;
            color: var(--primary);