.main-image-container {
    position: relative;
    display: inline-block;
    width: 100%; /* Увери се, че контейнерът заема ширината на снимката */
}

.main-image-container .slider-btn {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10; /* Увери се, че стрелките са над изображението */
}

.main-image-container .slider-btn button {
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    pointer-events: all;
}

.main-image-container .slider-btn button i {
    font-size: 24px;
}