/* Overlay that covers the entire page including the header */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    display: none; /* Hidden by default */
    z-index: 999; /* Positioned below the popup */
}

/* Style the popup */
#notice-popup {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    display: none; /* Hidden by default */
    z-index: 1000; /* Positioned above the overlay */
    width: 500px; /* Adjust width to fit content */
    text-align: center;
}

/* Title style for the popup */
#popup-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Style the body content of the popup */
#popup-body {
    margin-bottom: 20px;
}

/* Style the close button */
#closepopup-btn {
    background-color: grey;
    color: white;
    border: none;
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 3px;
}

#closepopup-btn:hover {
    background-color: darkred;
}



@media only screen and (max-width: 768px) {
  #notice-popup {
    top: 30%;
    transform: translateX(-50%);
    width: 300px; /* Adjust width to fit content */
  }
}  