﻿#customContextMenu .dropdown-item {
    font-size: 0.875rem;
    padding: 3px 12px;
    transition: background-color 0.2s;
    color: inherit; /* Giữ màu chữ gốc */
    /*z-index: 1050;*/
}

    #customContextMenu .dropdown-item:hover {
        background-color: #9ee1ff; /* Màu nền xanh nhạt, không làm chìm icon */
        color: inherit;             /* Không thay đổi màu chữ */
    }

    #customContextMenu .dropdown-item i {
        transition: transform 0.2s ease;
    }

    #customContextMenu .dropdown-item:hover i {
        transform: scale(1.1); /* Nhẹ nhàng phóng to icon khi hover */
    }

#customContextMenu .dropdown-divider {
    margin: 0;
}
