.popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupWindow {
    display: flex;
    flex-direction: column;
    width: 360px;
    /* padding: 20px; */
    background-color: white;
    border-radius: 8px;
    border: 1px solid #001D5B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 30px;
    color: #001D5B;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #001D5B;
}

.closeButton {
    height: 100%;
    font-size: 19px;
    font-weight: 100;
    cursor: pointer;
    padding: 0px 5px;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #001D5B;
    border-top-right-radius: 6px;
    color: #001D5B;
    text-decoration: none;
    transition: background-color 0.3s;
}

.closeButton:hover {
    background-color: rgb(215, 215, 215);
    border-top-right-radius: 6px;
}

.popupWindow > p {
    text-align: center;
    margin: 20px 0;
    color: #001D5B;
    font-size: 16px;
    line-height: 1.5;
}

.button-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 10px
}

.homePageButton, .retryButton {
    display: flex;
    padding: 10px 10px;
    justify-content: center;
    align-items: center;    
    width: 130px;
    margin: 10px;
    background-color: white;
    color: #001D5B;
    text-align: center;
    text-decoration: none;
    border: 1px solid #001D5B;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.homePageButton:hover, .retryButton:hover {
    background-color: rgb(215, 215, 215);
}

.hidden{
    display: none;
}

@media print {
    .popupOverlay {
        display: none;
    }

}