/* Custom Confirmation Modal */
.confirmation-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.confirmation-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

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

.confirmation-header {
    padding: 20px 24px 0;
    text-align: center;
}

.confirmation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.confirmation-icon.warning {
    background-color: #fef3c7;
    color: #f59e0b;
}

.confirmation-icon.danger {
    background-color: #fee2e2;
    color: #ef4444;
}

.confirmation-body {
    padding: 0 24px 20px;
    text-align: center;
}

.confirmation-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1f2937;
}

.confirmation-message {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
    white-space: pre-line;
}

.confirmation-footer {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirmation-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.confirmation-btn-cancel {
    background-color: #f3f4f6;
    color: #6b7280;
}

.confirmation-btn-cancel:hover {
    background-color: #e5e7eb;
}

.confirmation-btn-confirm {
    background-color: #ef4444;
    color: white;
}

.confirmation-btn-confirm:hover {
    background-color: #dc2626;
}

.confirmation-btn-confirm.primary {
    background-color: #3b82f6;
}

.confirmation-btn-confirm.primary:hover {
    background-color: #2563eb;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .confirmation-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .confirmation-footer {
        flex-direction: column;
    }
    
    .confirmation-btn {
        width: 100%;
    }
}