body {
    .dd_container {
        background: #ffffff;

        &.small-menu {
            transform: translate3d(0, 58px, 0px) !important;
            width: 100%;

            .menu-item {
                .sub-menu-items {
                    display: flex;
                }
            }
        }
    }
}

.top_bar {
    -webkit-box-shadow: 0px 4px 40px rgb(0 0 0 / 7%);
    box-shadow: 0px 4px 40px rgb(0 0 0 / 7%);
    border-bottom: 1px solid #ffffff29;
    z-index: 8;
    display: flex;
    justify-content: space-between;

    .display-time {
        display: flex;
        gap: 7px;

        .time {
            color: #8D8D8D;
            font-size: 12px;
        }
    }

    .top_bar__menu {
        @apply flex-row justify-between;

        .t__l__wrapper {
            @apply flex gap-3;

            .mobile__menu__top {
                @apply visible md:hidden items-center flex cursor-pointer rounded py-2 px-4;
            }

            .tl_menu_list {
                @apply flex-col md:flex-row md:flex;

                &.mobile {
                    display: flex !important;
                    position: absolute;
                    top: 60px;
                    right: 40px;
                    background: #003363;
                    z-index: 9999;

                    .t__menu {
                        justify-content: space-between;
                        width: 160px;
                        padding: 10px;
                    }
                }
            }

            .__creation {
                @apply flex items-center relative cursor-pointer rounded px-3 bg-indigo-600 text-white;

                .m__create {
                    @apply absolute w-72 left-0 top-8 bg-white text-black rounded-lg shadow z-[9999];
                    @media screen and (max-width: 767px) {
                        left: auto;
                        right: 0;
                    }

                    .m__area {
                        @apply overflow-y-auto py-2;

                        ul {
                            @apply w-full inline-block;

                            li {
                                @apply flex;

                                .c__1 {
                                    @apply relative block w-full hover:bg-gray-200;

                                    .c__2 {
                                        @apply flex w-full flex-1 justify-center flex-col py-2 px-3 overflow-hidden;

                                        .c__3 {
                                            @apply flex gap-[5px] font-medium text-sm leading-[18px];
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.placement-top-right {
    .tracker {
        @apply flex ml-1 gap-2 justify-between items-center;

        p.show {
            @apply text-sm;
            color: #fff;
            min-width: 55px;
        }

        button {
            @apply px-3 mr-1 py-1 bg-red-600 hover:bg-red-700 rounded text-[11px] select-none;
            color: #ffffff;
        }

        a {
            svg {
                @apply w-4 h-4;
                fill: #ffffff;
            }
        }
    }

    .select_user {
        width: 48px;
    }
}

.main {
    .tracker {
        p.show {
            color: #000000;
        }

        button {
            color: #fff;
        }

        a {
            svg {
                fill: #000;
            }
        }
    }
}

.language_menu {
    margin-right: 1rem;

    div {
        display: flex;

        svg {
            width: 20px;
            height: 20px;
        }

        span {
            margin-left: 6px;
        }
    }
}

.language_menu_list {
    display: flex;
    flex-flow: column;

    a.block {
        display: flex;
        padding-left: 12px;
        padding-top: 5px;
        padding-bottom: 5px;

        svg {
            width: 20px;
            height: 20px;
        }

        span.lang_name {
            margin-left: 6px;
        }
    }
}

.mobile-menu-selector {
    fill: #8D8D8D;
}

/* Enhanced Main Menu Styling */
.main-menu {
    @apply bg-white border-r border-gray-200 h-full overflow-hidden;
    border-color: rgba(229, 231, 235, 0.6);
    min-width: 280px;
    max-width: 320px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;

    /* Menu Header */
    .menu-header {
        @apply border-b border-gray-200 bg-gradient-to-r from-gray-50 to-gray-100;
        border-color: rgba(229, 231, 235, 0.6);
        background: linear-gradient(to right, rgba(249, 250, 251, 0.8), rgba(243, 244, 246, 0.8));
        padding: 1rem;
    }

    /* Menu Content */
    .menu-content {
        @apply flex-1 overflow-y-auto;
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 #f1f5f9;
        padding: 0.5rem 0;
        scroll-behavior: smooth;
        max-height: calc(100vh - 160px);
        overflow-x: hidden;
        overflow-y: auto;

        &::-webkit-scrollbar {
            width: 6px;

            &-track {
                background: #f1f5f9;
                border-radius: 3px;
            }

            &-thumb {
                background: #cbd5e1;
                border-radius: 3px;
                transition: background-color 0.2s ease;

                &:hover {
                    background: #94a3b8;
                }
            }
        }

        /* Custom scrollbar for Firefox */
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 #f1f5f9;

        /* Smooth scrolling */
        -webkit-overflow-scrolling: touch;

        /* Scroll indicators */
        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
            pointer-events: none;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
            pointer-events: none;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Show scroll indicators when content overflows */
        &.scrollable-top::before {
            opacity: 1;
        }

        &.scrollable-bottom::after {
            opacity: 1;
        }
    }

    /* Menu Item Groups */
    .menu-item-group {
        @apply relative;
        margin: 0.25rem 0.5rem;
        border-radius: 0.75rem;
        animation: fadeInUp 0.3s ease-out;

        &:not(:last-child) {
            margin-bottom: 0.5rem;
        }

        &:nth-child(1) { animation-delay: 0.05s; }
        &:nth-child(2) { animation-delay: 0.1s; }
        &:nth-child(3) { animation-delay: 0.15s; }
        &:nth-child(4) { animation-delay: 0.2s; }
        &:nth-child(5) { animation-delay: 0.25s; }
        &:nth-child(6) { animation-delay: 0.3s; }
        &:nth-child(7) { animation-delay: 0.35s; }
        &:nth-child(8) { animation-delay: 0.4s; }
        &:nth-child(9) { animation-delay: 0.45s; }
        &:nth-child(10) { animation-delay: 0.5s; }

        &.active {
            background-color: rgba(238, 242, 255, 0.3);
            border-radius: 0.75rem;
        }
    }

    /* Main Menu Items */
    .menu-item {
        @apply relative transition-all duration-300 ease-in-out;
        border-radius: 0.75rem;
        margin: 0.125rem 0;

        &:hover {
            background-color: rgba(249, 250, 251, 0.8);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            @apply transform translate-x-1;

            .menu-icon-wrapper {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                background-color: rgba(99, 102, 241, 0.1);
            }

            .menu-name {
                color: #374151;
            }

            .menu-description {
                color: #4b5563;
                opacity: 1;
            }

            .menu-arrow {
                @apply text-gray-600;
            }
        }

        &.active {
            transform: translateX(2px);

            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 4px;
                background: linear-gradient(to bottom, #6366f1, #8b5cf6);
                border-radius: 0 2px 2px 0;
            }

            .menu-icon-wrapper {
                box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
                transform: scale(1.05);
                background-color: rgba(99, 102, 241, 0.15);
                fill: #ffffff;
            }

            .menu-name {
                color: #ffffff;
                font-weight: 600;
            }

            .menu-description {
                color: #ffffff;
                opacity: 1;
            }
        }

        &:not(.active) {
            .menu-name {
                font-weight: 500;
            }
        }
    }

    /* Menu Links */
    .menu-link {
        @apply block w-full;
        text-decoration: none;

        &:focus {
            @apply outline-none;
            --tw-ring-opacity: 0.5;
        }

        &:focus-visible {
            outline: 2px solid #6366f1;
            outline-offset: 2px;
            border-radius: 0.75rem;
        }
    }

    .menu-item-content {
        @apply flex items-center space-x-3;
        min-height: 3rem;
    }

    /* Icon Wrapper */
    .menu-icon-wrapper {
        @apply p-2.5 rounded-xl flex-shrink-0 transition-all duration-300;
        width: 2.5rem;
        height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Menu Text */
    .menu-text {
        @apply flex-1 min-w-0;
        flex: 1;
        min-width: 0;
    }

    .menu-name {
        @apply text-sm font-semibold truncate;
        color: #1f2937;
        line-height: 1.4;
        margin-bottom: 0.125rem;
    }

    .menu-description {
        @apply text-xs truncate;
        color: #6b7280;
        line-height: 1.3;
        opacity: 0.8;
    }

    /* Menu Arrow */
    .menu-arrow {
        @apply flex-shrink-0 text-gray-400 transition-all duration-200;
    }

    /* Submenu Container */
    .submenu-container {
        @apply overflow-hidden transition-all duration-300 ease-in-out;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        &:not(.expanded) {
            max-height: 0;
        }

        &.expanded {
            max-height: 500px;
        }
    }

    /* Submenu Items */
    .submenu-items {
        @apply border-t border-gray-200;
        background-color: rgba(249, 250, 251, 0.4);
        border-color: rgba(229, 231, 235, 0.6);
        margin: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        padding: 0.25rem 0;
    }

    .submenu-item {
        @apply block w-full transition-all duration-300;
        text-decoration: none;
        margin: 0.125rem 0.5rem;
        border-radius: 0.5rem;

        &:hover {
            background-color: rgba(243, 244, 246, 0.8);
            transform: translateX(8px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            @apply transform translate-x-2;

            .submenu-icon {
                color: #6b7280;
                transform: scale(1.1);
            }

            .submenu-name {
                color: #374151;
            }
        }

        &.active {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-right: 2px solid #6366f1;
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
            transform: translateX(4px);

            .submenu-icon {
                color: #6366f1;
                transform: scale(1.05);
            }

            .submenu-name {
                color: #4f46e5;
                font-weight: 600;
            }
        }

        &:focus {
            @apply outline-none ring-2 ring-indigo-500 rounded-lg;
            --tw-ring-opacity: 0.5;
        }

        &:focus-visible {
            outline: 2px solid #6366f1;
            outline-offset: 2px;
            border-radius: 0.5rem;
        }
    }

    .submenu-item-content {
        @apply flex items-center space-x-3;
        padding: 0.625rem 1rem;
        min-height: 2.5rem;
    }

    /* Submenu Icon */
    .submenu-icon {
        @apply w-5 h-5 flex items-center justify-center flex-shrink-0;
        color: #9ca3af;
        transition: all 0.3s ease;
    }

    /* Submenu Text */
    .submenu-text {
        @apply flex-1 min-w-0;
        flex: 1;
        min-width: 0;
    }

    .submenu-name {
        @apply text-sm font-medium truncate;
        color: #4b5563;
        line-height: 1.4;
    }

    /* Mobile responsiveness */
    @media (max-width: 1024px) {
        min-width: 260px;
        max-width: 280px;

        .menu-content {
            max-height: calc(100vh - 100px);
        }

        .menu-item-content {
            padding: 0.75rem 0.875rem;
            min-height: 2.75rem;
        }

        .submenu-item-content {
            padding: 0.5rem 0.875rem;
            min-height: 2.25rem;
        }

        .menu-icon-wrapper {
            width: 2.25rem;
            height: 2.25rem;
            padding: 0.5rem;
        }
    }

    @media (max-width: 768px) {
        min-width: 240px;
        max-width: 260px;

        .menu-content {
            max-height: calc(100vh - 80px);
        }

        .menu-header {
            padding: 0.75rem;
        }

        .menu-item-content {
            padding: 0.625rem 0.75rem;
            min-height: 2.5rem;
            gap: 0.75rem;
        }

        .submenu-item-content {
            padding: 0.5rem 0.75rem;
            min-height: 2rem;
            gap: 0.75rem;
        }

        .menu-icon-wrapper {
            width: 2rem;
            height: 2rem;
            padding: 0.375rem;
        }

        .menu-name {
            font-size: 0.875rem;
            line-height: 1.3;
        }

        .menu-description {
            font-size: 0.75rem;
            line-height: 1.2;
        }

        .submenu-name {
            font-size: 0.8125rem;
            line-height: 1.3;
        }
    }

    @media (max-width: 640px) {
        min-width: 220px;
        max-width: 240px;

        .menu-content {
            max-height: calc(100vh - 70px);
        }

        .menu-item-content {
            padding: 0.5rem 0.625rem;
            min-height: 2.25rem;
            gap: 0.625rem;
        }

        .submenu-item-content {
            padding: 0.375rem 0.625rem;
            min-height: 1.875rem;
            gap: 0.625rem;
        }

        .menu-icon-wrapper {
            width: 1.875rem;
            height: 1.875rem;
            padding: 0.25rem;
        }

        .menu-name {
            font-size: 0.8125rem;
        }

        .menu-description {
            font-size: 0.6875rem;
        }

        .submenu-name {
            font-size: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        min-width: 200px;
        max-width: 220px;

        .menu-content {
            max-height: calc(100vh - 60px);
        }

        .menu-item-content {
            padding: 0.5rem;
            min-height: 2rem;
            gap: 0.5rem;
        }

        .submenu-item-content {
            padding: 0.375rem 0.5rem;
            min-height: 1.75rem;
            gap: 0.5rem;
        }

        .menu-icon-wrapper {
            width: 1.75rem;
            height: 1.75rem;
            padding: 0.25rem;
        }

        .menu-name {
            font-size: 0.75rem;
        }

        .menu-description {
            font-size: 0.625rem;
        }

        .submenu-name {
            font-size: 0.6875rem;
        }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        background-color: #111827;
        border-color: rgba(55, 65, 81, 0.6);

        .menu-header {
            background: linear-gradient(to right, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
            border-color: rgba(55, 65, 81, 0.6);
        }

        .menu-item-group.active {
            background-color: rgba(67, 56, 202, 0.2);
        }

        .menu-item {
            &:hover {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            &.active {
                box-shadow: 0 4px 12px rgba(67, 56, 202, 0.3);
            }
        }

        .menu-name {
            color: #f9fafb;
        }

        .menu-description {
            color: #d1d5db;
            opacity: 0.8;
        }

        .menu-item:hover {
            .menu-name {
                color: #ffffff;
            }

            .menu-description {
                color: #e5e7eb;
                opacity: 1;
            }
        }

        .menu-item.active {
            .menu-name {
                color: #a5b4fc;
                font-weight: 600;
            }

            .menu-description {
                color: #c7d2fe;
                opacity: 1;
            }
        }

        .menu-arrow {
            color: #6b7280;
        }

        .menu-item:hover .menu-arrow {
            color: #9ca3af;
        }

        .submenu-items {
            background-color: rgba(31, 41, 55, 0.4);
            border-color: rgba(55, 65, 81, 0.6);
        }

        .submenu-item {
            &:hover {
                background-color: rgba(55, 65, 81, 0.8);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }

            &.active {
                background: linear-gradient(135deg, rgba(67, 56, 202, 0.2), rgba(139, 92, 246, 0.2));
                border-right-color: #a5b4fc;
                box-shadow: 0 2px 8px rgba(67, 56, 202, 0.2);
            }
        }

        .submenu-icon {
            color: #6b7280;
        }

        .submenu-item:hover .submenu-icon {
            color: #9ca3af;
        }

        .submenu-item.active .submenu-icon {
            color: #a5b4fc;
        }

        .submenu-name {
            color: #d1d5db;
        }

        .submenu-item:hover .submenu-name {
            color: #f3f4f6;
        }

        .submenu-item.active .submenu-name {
            color: #a5b4fc;
            font-weight: 600;
        }

        .menu-content {
            &::-webkit-scrollbar-thumb {
                background: rgba(75, 85, 99, 0.3);

                &:hover {
                    background: rgba(75, 85, 99, 0.5);
                }
            }

            /* Dark mode scroll indicators */
            &::before {
                background: linear-gradient(to bottom, rgba(17, 24, 39, 0.8), transparent);
            }

            &::after {
                background: linear-gradient(to top, rgba(17, 24, 39, 0.8), transparent);
            }
        }
    }
}

/* Enhanced transitions and animations */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Utility classes */
.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.gradient-text {
    background: linear-gradient(-45deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legacy menu item styles for backward compatibility */
.menu-item {
    width: 100%;
    padding: 5px 10px;
    position: relative;

    .menu-link {
        border-radius: 8px;
        font-weight: 500;
        padding: 10px 5px;

        .menu__name {
            color: #2c323f;
            font-size: 15px;
        }

        &.have-sub-menu {
            &:after {
                content: '';
                position: absolute;
                width: 15px;
                height: 15px;
                background-image: url("/images/svg/angle-right.svg");
                background-repeat: no-repeat;
                display: block;
                top: 24px;
                right: 36px;
            }
        }
    }

    .sub-menu-items {
        display: none;
        flex-flow: column;
        gap: 15px;
        margin: 15px 5px;

        .sub-menu-item {
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 4px;

            .menu__name {
                font-size: 14px;
            }
        }
    }

    &.active {
        .menu-link {
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;

            .menu__name {
                color: #ffffff;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .menu__icon {
                fill: #ffffff;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            &.have-sub-menu {
                .menu__name {
                    color: #7366ff;
                }

                .menu__icon {
                    fill: #7366ff;
                }

                &:after {
                    background-image: url("/images/svg/angle-down.svg");
                }
            }
        }

        .sub-menu-items {
            display: flex;

            .sub-menu-item {
                &.active {
                    .menu__name {
                        color: #7366ff;
                        -webkit-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }

                    .menu__icon {
                        fill: #7366ff;
                        -webkit-transition: all 0.3s ease;
                        transition: all 0.3s ease;
                    }
                }
            }
        }
    }

    &.hover {
        .menu-link {
            &.have-sub-menu {
                .menu__name {
                    color: #7366ff;
                    -webkit-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                .menu__icon {
                    fill: #7366ff;
                    -webkit-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }

                &:after {
                    background-image: url("/images/svg/angle-down.svg");
                }
            }
        }

        .sub-menu-items {
            display: flex;
        }
    }
}

.dd__wrapper {
    .drop-down-caret-icon {
        fill: #ffffff;
    }

    span {
        color: #ffffff;
    }

    .select_user {
        span {
            &.hidden {
                display: none;

                @media (min-width: 720px) {
                    display: flex;
                }
            }
        }
    }
}

nav {
    li {
        &.group {
            a {
                border-bottom: 1px solid transparent;
            }

            &.active {
                @apply opacity-70;
                border-color: #ffffff;
                color: #4f46e5;
            }
        }
    }
}

.sticky {
    @apply z-[9000] bg-white bg-opacity-80 transition;
    backdrop-filter: blur(5px);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);

    .drop-down-caret-icon {
        fill: #0f172a;
    }

    span {
        color: #0f172a;
    }

    .navbar-logo {
        @apply py-2;
    }

    #navbarToggler span {
        @apply bg-dark;
    }

    #navbarCollapse li a {
        @apply text-dark hover:text-primary hover:opacity-100;
    }

    #navbarCollapse li .ud-menu-scroll.active {
        @apply text-primary opacity-100;
    }

    .loginBtn {
        @apply text-dark hover:text-primary hover:opacity-100;
    }

    .signUpBtn {
        @apply bg-primary text-white hover:bg-dark hover:text-white;
    }

    nav {
        li {
            &.group {
                &.active {
                    color: #4f46e5;
                }
            }
        }
    }
}

#navbarCollapse li .ud-menu-scroll.active {
    @apply opacity-70;
}

.navbarTogglerActive {
    > span:nth-child(1) {
        @apply top-[7px] rotate-45 transform;
    }

    > span:nth-child(2) {
        @apply opacity-0;
    }

    > span:nth-child(3) {
        @apply top-[-8px] rotate-[135deg];
    }
}

.ud-header {
    .help-desk-logo {
        display: none;

        &.white {
            display: block;
        }
    }

    &.sticky {
        .help-desk-logo {
            display: block;

            &.white {
                display: none;
            }
        }
    }
}

.right_menu_enable {
    margin-right: 250px;
}

.right__menu {
    ul {
        &.buttons {
            @apply flex flex-col w-full overflow-y-auto border-t;

            li {
                @apply flex items-center;

                button, a {
                    @apply w-full flex py-2 px-4 justify-start items-center;
                    color: #172b4d;

                    &:hover {
                        background-color: #091e420f;
                    }

                    svg, .icon {
                        width: 16px;
                        height: 16px;
                        margin-right: 10px;
                    }

                    .icon {
                        border-radius: 3px;
                    }
                }
            }
        }
    }

    .archive___board {
        .item {
            @apply flex w-full items-center justify-between border-b pb-3;

            .b__title {
                @apply font-medium;
                margin-right: 6px;
            }

            .btn {
                background-color: #091e420f;
                color: #172b4d;
                border-radius: 3px;
                padding: 6px 8px;
                transition-duration: 85ms;
                transition-property: background-color,border-color,box-shadow;
                display: flex;
                align-items: center;

                &:hover {
                    background-color: #091e4224;
                }
            }
        }
    }

    .top__control {
        @apply flex hover:bg-gray-200 cursor-pointer rounded w-7 h-7 justify-center items-center;
    }

    .btn.action {
        background-color: #091e420f;
        color: #172b4d;
        border-radius: 3px;
        padding: 6px 8px;
        transition-duration: 85ms;
        transition-property: background-color,border-color,box-shadow;
        display: flex;
        align-items: center;

        &:hover {
            background-color: #091e4224;
        }
    }
}

.top_project_menu {
    @apply absolute w-72 left-0 top-8 bg-white rounded-lg shadow z-999;
    @media screen and (max-width: 767px) {
        left: auto;
        right: 0;
    }

    .menu__wrapper {
        @apply overflow-y-auto p-2;

        ul.list {
            @apply w-full inline-block;

            li.item {
                @apply flex;

                .content {
                    @apply rounded-lg relative block w-full hover:bg-gray-200;
                }
            }
        }
    }
}
