.message-popup {
    position: fixed;
    /* Stay in place regardless of scrolling */
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* Centers the popup vertically */
    justify-content: center;
    /* Centers the popup horizontally */
    background-color: rgba(0, 0, 0, 0.5);
    /* Dimmed background color */
    z-index: 1050;
    /* Above the navbar or any other elements */
}

.message-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 300px;
    /* Set a fixed width for the popup */
    z-index: 1051;
    /* Above the .message-popup overlay */
}

.close-button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}