.dropdown-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.12s;
}

.dropdown-menu-item:hover {
    background: #f5f5f5;
    color: #111;
}

.dropdown-menu-item--danger {
    color: #a32d2d;
}

.dropdown-menu-item--danger:hover {
    background: #fcebeb;
    color: #a32d2d;
}
