﻿.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
}

.confirm-dialog {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirm-header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid #dee2e6;
}

.confirm-body {
    padding: 20px;
}

.confirm-footer {
    padding: 10px 20px 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.confirm-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

    .confirm-icon.warning {
        background-color: #fff3cd;
        color: #856404;
    }

    .confirm-icon.danger {
        background-color: #f8d7da;
        color: #721c24;
    }

    .confirm-icon.info {
        background-color: #d1ecf1;
        color: #0c5460;
    }

.demo-section {
    margin: 50px 0;
    text-align: center;
}

.demo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
