 /* Sidebar */
        .sidebar {
            position: sticky;
            top: 120px;
        }

        .sidebar .card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        /* Quick Links */
        .quick-links {
            list-style: none;
            padding: 0;
        }

        .quick-links li {
            margin-bottom: 0.75rem;
        }

        .quick-links a {
            display: flex;
            align-items: center;
            padding: 0.75rem;
            background: white;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .quick-links a:hover {
            background: var(--primary-maroon);
            color: white;
            transform: translateX(5px);
            box-shadow: var(--shadow);
        }

        .quick-links a::before {
            content: "⚾";
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }