/**
 * menu.css - 自訂右鍵選單樣式
 *
 * 對應 JS：function/js/menu.js
 * 對應 HTML：各頁面底部的 #customMenu 元素
 *
 * @package  HAMI Exam System
 */
#customMenu {
    position: absolute;
    display: none;
    background: #1e1e1e;
    color: white;
    border-radius: 8px;
    width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    font-size: 14px;
}

#customMenu ul {
    list-style: none;
    margin: 0;
    padding: 5px 0;
}

#customMenu li {
    padding: 10px 15px;
    cursor: pointer;
}

#customMenu li:hover {
    background: #333;
}