.drawer-simple-container {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.drawer-simple-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(2 5 12 / 0%) 0%, #02050c 100%);
    opacity: 0 !important;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
    z-index: 1 !important;
}

.drawer-simple-container:hover::after {
    opacity: 1 !important;
}

.drawer-simple-content {
    position: relative;
    z-index: 10 !important;
    opacity: 0 !important;
}

.drawer-simple-container:hover .drawer-simple-content {
    opacity: 1 !important;
}
