.deep-list-container-e91f38f0 {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}
.dl-view-port {
    width: 100%;
    position: relative;
}
.dl-panels {
    position: relative;
    width: 100%;
    min-height: 50px;
    --dl-duration: 300ms;
}
.dl-panel {
    width: 100%;
    box-sizing: border-box;
}

/* Animation Base */
.dl-animating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all var(--dl-duration) ease-in-out;
}
.dl-active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

/* Fade */
.dl-fade-out {
    opacity: 0;
}
.dl-fade-in {
    opacity: 0;
}

/* Slide Left Base */
.dl-slide-left-out {
    transform: translateX(-100%);
    opacity: 0;
}
.dl-slide-left-in {
    transform: translateX(100%);
    opacity: 0;
}

/* Slide Right Base */
.dl-slide-right-out {
    transform: translateX(100%);
    opacity: 0;
}
.dl-slide-right-in {
    transform: translateX(-100%);
    opacity: 0;
}

.dl-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dl-item-wrap {
    border-bottom: 1px solid #eee;
}
.dl-item-wrap:last-child {
    border-bottom: none;
}
.dl-item, .dl-back {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}
.dl-item {
    justify-content: flex-start;
}
.dl-item-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}
.dl-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.dl-item:hover, .dl-back:hover {
    background: #f9f9f9;
}
.dl-back {
    background: #fafafa;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}
/* Alignment adjustments */
.dl-back[style*="justify-content: center"] .dl-icon { margin-right: 5px; }
.dl-back[style*="justify-content: right"] .dl-icon { margin-left: 10px; order: 1; }
.dl-back[style*="justify-content: right"] { flex-direction: row-reverse; }

.dl-arrow, .dl-icon {
    font-size: 1.2em;
    color: #888;
    transition: all 0.2s ease;
}
.dl-icon {
    margin-right: 5px; /* Default fallback if slider not set */
}

/* No Separators Option */
.dl-no-separators .dl-item-wrap {
    border-bottom: none;
}
.dl-no-separators .dl-back {
    border-bottom: none;
}