﻿.alert-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 9999; /* To ensure it appears above all other content */
}

.alert-header {
    display: flex;
    justify-content: space-between;
}

    .alert-header button {
        background-color: red;
        color: white;
        border: none;
        padding: 5px;
    }

.alert-content {
    margin-top: 20px;
}
