.dropdown-wrapper {
    position: relative;
}

/***********************************************
 *
 * Icon
 *
 ***********************************************/

.dropdown-wrapper .dropdown-actions-icon {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: rgba(10, 11, 20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mist);
    cursor: pointer;
    transition: all 0.16s;
}

.dropdown-wrapper .dropdown-actions-icon .material-symbols-outlined {
    font-size: 14px;
}

.dropdown-wrapper.open .dropdown-actions-icon, .dropdown-wrapper .dropdown-actions-icon:hover {
    background: rgba(13, 14, 19);
    border-color: var(--border-hover);
    color: var(--cream);
}

/***********************************************
 *
 * Content
 *
 ***********************************************/

.dropdown-content:not(.dropdown-clone) {
    display: none;
}

.dropdown-content.dropdown-clone {
    display: block;
    z-index: var(--z-index-dropdown);
    position: absolute;
    background: #0d0e1c;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px;
    min-width: 120px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.dropdown-content.dropdown-clone:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 148, 58, 0.25), transparent);
}

.dropdown-content.dropdown-clone a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    background: transparent;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--mist);
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
}

.dropdown-content.dropdown-clone a:hover {
    background: rgba(201, 148, 58, 0.07);
    color: var(--cream);
}

.dropdown-content.dropdown-clone a .material-symbols-outlined {
    font-size: 10px;
}

.dropdown-content.dropdown-clone a.danger {
    color: rgba(200, 88, 64, 0.7);
}

.dropdown-content.dropdown-clone a.danger:hover {
    background: rgba(200, 88, 64, 0.08);
    color: var(--coral);
}
