/* Custom Confirm Dialog */
.custom-confirm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.custom-confirm-overlay.active {
    display: flex;
}

.custom-confirm-dialog {
    background: var(--color-confirmdialog-bg);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    text-align: center;
}

.custom-confirm-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.4s ease;
}

.custom-confirm-icon svg {
    filter: drop-shadow(0 4px 10px rgba(243, 156, 18, 0.3));
}

.custom-confirm-title {
    color: var(--color-confirmdialog);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.custom-confirm-message {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.custom-confirm-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.custom-confirm-buttons button {
    flex: 1;
    max-width: 150px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
