
.event-popup {
    display: none;
    position: fixed;
    left: 2%;
    top: 5%;
    max-width: 60%;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    color: #000;
}

.popup-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-content img{
    margin: 20px;
    max-width: 700px;
    height: auto;
    width: 100%;
}

.close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #000000;
}

button.hide-button{
    position: absolute;
    right: 30px;
    top: 10px;
    padding: 0;
    cursor: pointer;
    text-decoration:underline;
    background: inherit;
    border: none;
    box-shadow: none;
}

button.event-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #000000;
    width: 150px;
    height: 50px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.event-button a{
    color: #fff;
    text-decoration: none;
    outline: none;
}

button.event-button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
    .event-popup {
        left: 5%;
        top: 2%;
        width: 90%;
        max-width: 300px;
    }

    .popup-content {
        padding: 15px;
    }

    button.event-button {
        width: 100%;
        padding: 15px 0;
    }
}