﻿.btn-submit {
    background-color: #0071e3; /* 苹果蓝 */
    color: #ffffff;
    border-radius: 12px;
    font-weight: 500;
    border: none;
    transition: opacity 0.2s ease;
}

.btn-submit:hover {
    opacity: 0.85;
    color: #ffffff;
}

/* 强制覆盖 BS5 默认图标，确保它显示 */
.btn-close {
    background: none !important; /* 清除可能损坏的默认背景图 */
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem !important;
}
    /* 使用文本符号作为备份，防止 SVG 加载失败出现黑块 */
    .btn-close::before {
        content: '✕';
        font-weight: bold;
        color: #555;
        font-size: 1.2rem;
    }

/* sweetAlert */
.custom-confirm-button {
    background-color: #4CAF50 !important; /* 设置按钮背景颜色 */
    color: white !important;             /* 设置按钮文字颜色 */
    border: 0px solid #000 !important;   /* 去除边框 */
    border-radius: 5px !important;       /* 设置圆角 */
    padding: 10px 20px !important;       /* 调整按钮内边距 */
    font-size: 16px !important;          /* 调整字体大小 */
    cursor: pointer !important;          /* 鼠标指针样式 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
    width: 100px;
}

.custom-confirm-button:hover {
    background-color: #45a049 !important; /* 鼠标悬停时颜色 */
}
/* sweetAlert */