/* Popup styling */
.alert-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay effect */
    z-index: 1000;
}

.alert-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border: 2px solid #d9534f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.alert-banner {
    background-color: #d9534f;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.alert-content {
    padding: 20px;
}

.alert-content h2 {
    color: #d9534f;
    margin-bottom: 10px;
}

.alert-content ul {
    list-style: disc;
    margin-left: 20px;
    color: #333;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #268dbc;
}

.contact-info strong {
    color: #d9534f;
}

.note {
    margin-top: 20px;
    font-style: italic;
    color: #d9534f;
}

.close-alert {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: #d9534f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-alert:hover {
    background-color: #b52e3d;
}

/* Apply animation to popup content */
.alert-popup-content {
    animation: zoomIn 0.5s ease-in-out;
}

body.modal-open {
    overflow: hidden; 
    position: fixed;
    height: 100%;     
}
.alert-popup {
    display: none; / Hidden by default /
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); / Overlay effect /
    z-index: 1000;
}


.alert-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border: 2px solid #d9534f;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto; 
    max-height: 98%; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    scrollbar-width: thin; 
    scrollbar-color: #d9534f #f1f1f1; 
}

.alert-popup-content::-webkit-scrollbar {
    width: 6px; 
}

.alert-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 5px; 
}

.alert-popup-content::-webkit-scrollbar-thumb {
    background-color: #d9534f; 
    border-radius: 5px; 
    border: 2px solid transparent; 
}

.alert-popup-content::-webkit-scrollbar-thumb:hover {
    background-color: #b52e27; 
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .alert-popup-content {
        scrollbar-face-color: #d9534f; 
        scrollbar-track-color: #f1f1f1; 
        scrollbar-arrow-color: #fff; 
    }
}