﻿.tp-accwrap {
    position: relative;
    display: inline-flex;
}

.tp-accmenu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 240px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(226,232,240,.95);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(15,23,42,.14);
    z-index: 9999;
    display: none;
}

    .tp-accmenu.is-open {
        display: block;
    }

.tp-accwho {
    padding: 10px 10px 8px;
    border-bottom: 1px solid rgba(226,232,240,.9);
    margin-bottom: 6px;
}

.tp-accwho__t {
    font-family: var(--tp-font-display), var(--tp-font-body), system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0f172a;
}

.tp-accwho__s {
    margin-top: 3px;
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-variant-numeric: tabular-nums;
}

.tp-accsep {
    height: 1px;
    background: rgba(226,232,240,.9);
    margin: 6px 6px;
}

.tp-accitem {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    font-family: var(--tp-font-display), var(--tp-font-body), system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: background .15s ease, transform .15s ease;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

    .tp-accitem:hover {
        background: rgba(241,245,249,.9);
        transform: translateY(-1px);
    }

.tp-accic {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .9;
}

.tp-accform {
    margin: 0;
}

.tp-accitem--danger {
    color: #b91c1c;
}

    .tp-accitem--danger:hover {
        background: rgba(254,226,226,.9);
    }
