.context-menu {
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 120px;
}

.context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    padding: 8px 16px;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.menu-item:hover {
    background-color: #f0f0f0;
}

/* 비활성화된 메뉴 아이템 스타일 */
.menu-item.disabled {
    color: #999;
    cursor: default;
}

.input-popup {
    position: fixed;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.input-popup input {
    margin-bottom: 10px;
    padding: 5px;
    width: 200px;
}

.input-popup .button-group {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.input-popup button {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.input-popup .confirm-btn {
    background: #4CAF50;
    color: white;
}

.input-popup .cancel-btn {
    background: #f44336;
    color: white;
}
  