/**
 * 应用工具删除成功提示弹窗样式
 * 符合代码规范：<400行
 * 使用独立前缀 app-tool-delete-success-tip-，确保面板独立性
 * 不与其他面板通用，避免后续修改互相影响
 */

/* 弹窗遮罩层 */
.app-tool-delete-success-tip-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    transition: background-color 0.25s ease, backdrop-filter 0.25s ease, opacity 0.25s ease;
    align-items: center;
    justify-content: center;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
}

.app-tool-delete-success-tip-modal.app-tool-delete-success-tip-show {
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1;
}

/* 弹窗内容区 */
.app-tool-delete-success-tip-content {
    min-width: 360px;
    max-width: 90vw;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-primary);
    overflow: hidden;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
}

.app-tool-delete-success-tip-modal.app-tool-delete-success-tip-show .app-tool-delete-success-tip-content {
    transform: scale(1);
    opacity: 1;
}

/* 弹窗主体 */
.app-tool-delete-success-tip-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* 成功图标 */
.app-tool-delete-success-tip-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #27ae60;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

/* 提示文字 */
.app-tool-delete-success-tip-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    text-align: center;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
}

/* 弹窗底部 */
.app-tool-delete-success-tip-footer {
    padding: 16px 24px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border-primary);
    background: var(--bg-secondary);
}

/* 确定按钮 */
.app-tool-delete-success-tip-btn {
    min-width: 100px;
    padding: 10px 24px;
    font-size: 14px;
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", "Arial", sans-serif;
    font-weight: 500;
    color: #ffffff;
    background: var(--color-accent, #0066cc);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.app-tool-delete-success-tip-btn:hover {
    background: var(--color-accent-hover, #0052a3);
}

.app-tool-delete-success-tip-btn:active {
    opacity: 0.9;
}
