
.popups-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup {
    background-color: rgba(0,0,0,0.7);
    color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 80%;
    max-width: 500px;
    display: none;
}
.popup img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .popup {
        width: 90%;
    }
}
