.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    font-weight: bold;
    color: #00c0de;
}

.popup-content img.logo-eqwal {
    max-width: 150px;
    height: auto;
}

.popup-content p {
    font-size: 1rem;
    line-height: 1.75rem;
}

.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: red;
}

#okButton {
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #00c0de;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#okButton:hover {
    background-color: #00b2d0;
}