.ns-b1cc2ff6-outer {
    display: flex;
    flex-direction: column;
}

.ns-b1cc2ff6-header {
    margin-bottom: 20px;
}

.ns-b1cc2ff6-headline {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    text-align: left;
}

.ns-b1cc2ff6-headline-part1 {
    color: #9401D9;
}

.ns-b1cc2ff6-headline-part2 {
    color: #571fff;
    display: inline-block;
}

.ns-b1cc2ff6-wrapper {
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.ns-b1cc2ff6-list-container {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Custom Scrollbar */
.ns-b1cc2ff6-list-container::-webkit-scrollbar {
    width: 6px;
}

.ns-b1cc2ff6-list-container::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
.ns-b1cc2ff6-list-container::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 4px;
}

.ns-b1cc2ff6-list-container::-webkit-scrollbar-thumb:hover {
    background: #999; 
}

.ns-b1cc2ff6-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ns-b1cc2ff6-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.3s ease;
}

.ns-b1cc2ff6-item:hover {
    background: #fafafa;
}

.ns-b1cc2ff6-item:last-child {
    border-bottom: none;
}

.ns-b1cc2ff6-icon {
    flex-shrink: 0;
    margin-right: 12px;
    margin-top: 3px;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-b1cc2ff6-icon i {
    font-size: 14px;
}

.ns-b1cc2ff6-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ns-b1cc2ff6-item-text {
    flex-grow: 1;
    line-height: 1.5;
    font-size: 15px;
    color: #444;
}

.ns-b1cc2ff6-item-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.ns-b1cc2ff6-item-text a:hover {
    color: #007bff;
}