.confirm-modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.25s ease, backdrop-filter 0.25s ease, opacity 0.25s ease;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.confirm-modal-overlay.active {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1;
    pointer-events: all;
}

.confirm-modal {
    background: rgba(30, 35, 48, 0.98);
    border-radius: 16px;
    padding: 28px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.confirm-modal-overlay.active .confirm-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.confirm-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.confirm-modal-message {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.confirm-modal-actions {
    display: flex;
    gap: 10px;
}

.confirm-modal-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.confirm-modal-btn-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.confirm-modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-1px);
}

.confirm-modal-btn-confirm {
    background: #10b981 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.confirm-modal-btn-confirm:hover {
    background: #059669 !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
    transform: translateY(-1px);
}

.confirm-modal-btn-confirm.danger {
    background: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.confirm-modal-btn-confirm.danger:hover {
    background: #dc2626;
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}
