.gallery-wrapper {
            display: flex;
            align-items: center;
            max-width:1960px;
            width: 100%;
        }
        
        .scroll-arrow {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            user-select: none;
            flex-shrink: 0;
            margin: 0 10px;
        }
        
        .scroll-arrow:hover:not(.disabled) {
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .scroll-arrow.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .image-container-wrapper {
            flex: 1;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }
        
        .image-container {
            width: calc(100% - 80px);
            overflow: hidden;
        }
        
        .image-scroller {
            display: flex;
            transition: transform 0.3s ease;
            padding: 20px 0;
        }
        
        .image-scroller img {
            box-shadow: 4px 6px 20px #333;
            width: 385px;
            height: 500px;
            object-fit: cover;
            margin:0 30px;
            flex-shrink: 0;
        }
        
        .image-scroller img:last-child {
            margin-right: 0;
        }
        .flexcenter{display: flex;
            justify-content: center;
            margin: 0;
            padding: 20px;}