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

#focus {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: -10;
    margin-top: -10vh;
}

#focus img{
    max-width: 100vh;
    max-width: 100vw;
}

#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: auto;
    display: block;
    gap: 50px;
    margin-bottom: 5vh;

}

#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;
    }
}
