/* Zavjese **********/

.zavjese {
    display: none;
}

@media (min-width: 1900px) {
    .zavjese {
        display: block;
        position: relative;
        width: 100%;
        height: 0; /* This section is only used to contain the curtain divs */
    }

    .curtain {
        position: fixed;
        top: calc(50vh - 400px); /* Center the curtain vertically */
        width: 250px; /* Adjust the width as needed */
        height: 800px;
        z-index: 1000; /* Ensures it appears above other content */
    }

    .curtain-left {
        left: 0;
    }

    .curtain-right {
        right: 0;
    }

    .curtain img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the entire height */
    }
}