﻿
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.85);
z-index: 10001;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Active state for overlay */
.overlay.active {
opacity: 1;
visibility: visible;
}

/* Styles for popup with animation */
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.9);
background-color: white;
border-radius: 4px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
z-index: 999999;
width: 90%;
max-width: 700px;
text-align: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
display: flex;
flex-direction: column;
border: 1px solid #ccc;
}

/* Active state for popup */
.popup.active {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%) scale(1);
}

.warning-icon {
margin: 20px auto;
width: 70px;
height: 70px;
}

.popup-title {
margin: 0;
padding: 10px 0;
font-size: 24px;
color: #000;
font-weight: bold;
}

.popup-content {
padding: 20px;
margin: 10px 20px;
border: 1px solid #000;
border-radius: 4px;
}

.popup-text {
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 15px;
font-weight: bold;
text-align: center;
}

.logo-container {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin: 20px 0;
}

.gov-logo {
width: 60px;
height: 60px;
}

.footer {
background-color: #ddd;
height: 8px;
margin-top: auto;
}