#popup-content {
    position: fixed;
    width: 600px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;

    /* Center the element */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: 'Times New Roman', serif;
    box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.5);

    z-index: 101;
}

#popup-image-container {
    flex: 0 0 40%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup-image-container img {
    width: 80%;
    max-height: 100%;
    object-fit: contain;
}

#popup-text-area {
    position: relative;
    flex: 0 0 60%; 
    padding: 10px;
    height: 100%;
}

#popup-text-area #close-cross
{
    position: absolute;
    height: 20px;
    width: 20px;
    top: 10px;
    right: 10px;
    background-color: red;
    border: none;
}

#popup-text-area h2
{
    color: black;
    position: absolute;
    top: 50px;
    font-weight: bold;
    font-size: 1rem;
}

#popup-text-area p
{
    color: black;
    position: absolute;
    top: 120px;
    font-size: 0.8rem;
}

#join-button {
    position: absolute;
    bottom: 40px;
    height: 40px;
    width: 80%;

    background: linear-gradient(to bottom, #a8e063, #56ab2f);
    border: 2px solid #385e24;
    border-radius: 10px;
    font-size: 0.8rem;
    color: white;
    text-shadow: 1px 1px 2px #2e4d17;
    padding: 5px 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#join-button:hover {
    background: linear-gradient(to bottom, #56ab2f, #a8e063);
    transform: scale(1.05);
}