.manitoba-popin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.manitoba-popin-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.manitoba-popin-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    color: #fff;
    padding: 20px;
    overflow: auto;
}

.manitoba-popin-content {
    position: relative;
    outline: none;
}

.manitoba-popin-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.manitoba-popin-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .manitoba-popin-container {
        max-width: 95%;
        max-height: 95%;
    }
}