
.dropdown-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 320px;
    border-radius: 14px;
    border: 1px solid var(--border-color-defoult, #CBD5E1);
    background: var(--bg-content, #FFF);
    box-shadow: -18px 52px 15px 0 rgba(136, 159, 205, 0.00),
        -12px 33px 14px 0 rgba(136, 159, 205, 0.02),
        -7px 19px 12px 0 rgba(136, 159, 205, 0.07),
        -3px 8px 9px 0 rgba(136, 159, 205, 0.12),
        -1px 2px 5px 0 rgba(136, 159, 205, 0.13);

    z-index: 999;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 8px 0;
    overflow: hidden;
    pointer-events: none;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    color: var(--text-primary, #000);
    font-family: Daikon;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-hover, rgba(32, 101, 242, 0.10));
}

.dropdown-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.dropdown-item.text-danger {
    color: var(--text-danger, #DD3636);
    font-family: Daikon;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.dropdown-item.text-danger:hover {
    background: var(--button-danger-bg-hover, rgba(221, 54, 54, 0.10));
}
