/* 액션 메뉴 스타일 */
.action-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 0.2s;
}

.action-menu {
    background: white;
    border-radius: 12px 12px 0 0;
    width: 100%;
    max-width: 500px;
    padding: 8px;
    animation: slideUp 0.3s;
}

.action-menu-item {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.action-menu-item:last-child {
    margin-bottom: 0;
}

.action-menu-item i {
    font-size: 18px;
    color: var(--gray-600);
}

.action-menu-item:hover {
    background: var(--gray-50);
}

.action-menu-item.danger {
    color: var(--danger);
}

.action-menu-item.danger i {
    color: var(--danger);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* PC 버전 */
@media (min-width: 768px) {
    .action-menu-backdrop {
        align-items: center;
    }
    
    .action-menu {
        border-radius: 12px;
        max-width: 400px;
        padding: 12px;
    }
}
