.nav-item {
        margin: 5px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link {
        color: #495057;
        padding: 12px 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-link i {
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
    }

    .nav-link:hover {
        background-color: #e9ecef;
        color: #0d6efd;
        transform: translateX(5px);
    }

    /* Active state */
    .nav-link.active {
        background-color: #0d6efd;
        color: white;
    }

    /* Dropdown styling */
    .nav-item.dropdown {
        position: relative;
    }

    .dropdown-menu {
        border: none;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        padding: 8px;
        border-radius: 8px;
        min-width: 200px;
    }

    .dropdown-item {
        padding: 8px 15px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .dropdown-item:hover {
        background-color: #e9ecef;
        transform: translateX(5px);
    }

    /* Animation */
    @keyframes
    slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-menu.show {
        animation: slideDown 0.3s ease;
    }

    /* Responsive */
    @media
    (max-width: 768px) {
        .nav-link span {
            display: none;
        }

        .nav-link i {
            font-size: 1.5rem;
        }

        .dropdown-menu {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            box-shadow: none;
            border-radius: 0;
        }
    } 