body {
    background-color: black;
    overflow-x: hidden;
}

#body {
    margin-left: 5px;
}
.works {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; 
    gap: 20px;
}
.works img{
    width: 95vw;
    max-height: 75vh;
    object-fit: contain;
}

.works2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}
.works2 img{
    width: 80vw;
    max-height: 75vh;
    object-fit: contain;
}

.works3 {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; 
    margin-top: 50px;
}
.works3 img{
    width: 100vw;
    max-height: 105vh;
    object-fit: contain;
}

#workshorizontalsub1 img{
    width: 80vw;
}

#workshorizontalsub1 {
    display: flex;
    margin-left: 1vw;
    flex-direction: row;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; 
    gap: 20px;
}

#workshorizontalsub1.active {
    cursor: grabbing;
}

#workshorizontal {
    height: 95lvh;
    display: block;
    gap: 50px;

}

#scrollbarindication {
    width: 100vw;
    height: 3px;
    margin-top: 10px;
    margin-left: 10vw;
    background-color: #999999;
    position: absolute;
}

#scrollLeftBtn {
    border: none;
    position: absolute;
    left: -10vw;
    cursor: pointer;
    z-index: 10;
    margin-top: 2.5vh;
    height: 75vh;
    width: 15vw;
    background-color: black;
    opacity: 0.1;
    color: white;
    font-size: 40px;
    /* Additional styling */
}

#scrollLeftBtn:hover {
    background-color: black;
    opacity: 0.2;
    transform-origin: left;
    transform: scale(1.5,1);
}

#scrollRightBtn {
    border: none;
    position: absolute;
    right: -1vw;
    cursor: pointer;
    z-index: 10;
    margin-top: 2.5vh;
    height: 75vh;
    width: 15vw;
    background-color: black;
    opacity: 0.1;
    color: white;
    font-size: 40px;
}

#scrollRightBtn:hover {
    background-color: black;
    opacity: 0.2;
    transform-origin: right;
    transform: scale(1.5,1);
}

@media (max-width: 1024px) {
    #scrollLeftBtn {
        display: none !important;
    }
    #scrollRightBtn {
        display: none !important;
    }
}
