.popup-fixed-size {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background-color: #2894FF;
}

.popup-fixed-size .close {
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

.popup-fixed-size p {
    font-size: 20px;
    margin-bottom: 15px;
}

.popup-fixed-size button {
    padding: 5px 10px;
    background-color: white;
    /* background-color: #007bff; */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
