/**
 * 鍒犻櫎鍙嶉纭瀵硅瘽妗?- 鐙珛鏍峰紡
 * 浠呯敤浜?#deleteFeedbackModal锛岃鑼冿細Microsoft YaHei
 */

/* 在视频/图片预览弹窗打开时，确认框需置于其之上（#videoModal/#imageModal 为 10050） */
#deleteFeedbackModal.modal.delete-feedback-modal-on-top {
    z-index: 10060 !important;
}

/* 删除反馈确认对话框样式 */
#deleteFeedbackModal .modal-content {
    margin: 0;
    padding: 0;
    width: 400px;
    height: 260px;
    max-width: 400px;
    max-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.delete-feedback-modal {
    width: 100%;
    height: 100%;
    padding: 24px 30px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(231, 76, 60, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}

/* 警告图标 */
.delete-feedback-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.15);
    border-radius: 50%;
    color: #e74c3c;
    flex-shrink: 0;
}

.delete-feedback-icon svg {
    width: 48px;
    height: 48px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.delete-feedback-modal h3 {
    margin: 0 0 12px 0;
    color: #e74c3c;
    font-size: 20px;
    font-weight: 700;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
    flex-shrink: 0;
}

.delete-feedback-modal p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
    flex-shrink: 0;
    padding: 0 10px;
}

.delete-feedback-modal .modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
    flex-shrink: 0;
}

.delete-feedback-modal .modal-buttons .btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
    min-width: 100px;
    cursor: pointer;
}

.delete-feedback-modal .modal-buttons .btn-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.delete-feedback-modal .modal-buttons .btn-danger:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.5);
}

.delete-feedback-modal .modal-buttons .btn-danger:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.delete-feedback-modal .modal-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
}

.delete-feedback-modal .modal-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
}

/* 移动端响应式已移除（项目仅支持 Windows 桌面端） */
