/* Minimal styling to mimic SweetAlert2 dialog */
.swal2-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
}
.swal2-popup {
    box-sizing: border-box;
    max-width: 90%;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-family: inherit;
}
.swal2-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.swal2-html-container {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.swal2-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.swal2-confirm {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: #ff6b00;
    color: #fff;
    cursor: pointer;
}
.swal2-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}
.swal2-icon.swal2-error { background: #f44336; }
.swal2-icon.swal2-success { background: #4caf50; }
