.popup-message {
    position: fixed;
    left: 50%;
    top: 84%;
    transform: translate(-50%, -50%);
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border: 1px solid #ffeeba;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-width: 300px;
    text-align: center;
}

.popup-message p {
    margin: 0; /* Remove margin from the paragraph */
    font-weight: bold; /* Bold text for emphasis */
}

.notice-icon {
    font-size: 20px; /* Larger icon size */
    margin-right: 10px; /* Space between icon and text */
    display: inline-block; /* Display inline with the text */
    vertical-align: middle; /* Align with text vertically */
}

#closePopup {
    background-color: #f44336; /* Red background for the button */
    color: white; /* White text color */
    border: none; /* No border */
    padding: 5px 10px; /* Padding for the button */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 3px; /* Rounded corners */
    margin-top: 10px; /* Space above the button */
}
@media (max-width: 768px) {
    .popup-message {
        position: fixed;
        left: 50%;
        top: 77%;
        transform: translate(-50%, -50%);
        background-color: #fff3cd;
        color: #856404;
        padding: 15px;
        border: 1px solid #ffeeba;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none; /* Change this to 'block' when you want to show the popup */
        max-width: 300px;
        text-align: center;
    }
}