﻿/* 自定义弹窗样式 - 所有类名均带有customerModal前缀 */
.customerModal-container {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .customerModal-container.active {
        opacity: 1;
        pointer-events: auto;
    }

.customerModal-content {
    background: white;
    border-radius: 8px;
    padding: 16px;
    max-width: 372px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.customerModal-container.active .customerModal-content {
    transform: scale(1);
}

.customerModal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #888;
    padding: 1px 6px !important;
}

    .customerModal-close:hover {
        color: #333;
    }

.customerModal-content-body {
    text-align: center;
    padding: 0;
}

.customerModal-title {
    font-size: 16px;
    font-weight: 600;
    margin: 4px 0 6px;
    color: #333;
}

.customerModal-message {
    font-size: 12px;
    color: #666;
    margin-bottom: 14px;
    margin-top: 12px;
    line-height: 1.3;
}

.customerModal-confirm {
    width: 100%;
    height: 32px;
    background: #56B95F;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 0;
    font-size: 12px;
    cursor: pointer;
}

    .customerModal-confirm:hover {
        background: #45A84E;
    }
