.admin-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.admin-nav-button {
    padding: 10px 20px;
    background: #035696;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    line-height: 1;
}

.admin-nav-button:hover {
    background: #024a84;
    transform: translateY(-1px);
}

.admin-nav-button:focus-visible {
    outline: 2px solid rgba(3, 86, 150, 0.35);
    outline-offset: 2px;
}

.admin-nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
    overflow: hidden;
    display: none;
    z-index: 2000;
}

.admin-nav-dropdown.open {
    display: block;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    color: #023d72;
    border: none;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
}

.admin-nav-item:hover {
    background: #f3f6fa;
}

.admin-nav-item.active {
    background: #eef6ff;
    font-weight: 700;
}

.admin-nav-item.danger {
    color: #c0392b;
}

.admin-nav-item.danger:hover {
    background: #fdeaea;
}

.admin-nav-divider {
    height: 1px;
    background: #eef2f7;
    margin: 6px 0;
}

.admin-nav-kbd {
    font-size: 11px;
    color: #6b7280;
    background: #f3f6fa;
    border: 1px solid #e5e7eb;
    padding: 2px 6px;
    border-radius: 8px;
}
