.laptop-mockup-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.laptop-screen-container {
    position: absolute;
    top: 26%;
    left: 16%;
    width: 68.8%;
    height: 61%;
    overflow: hidden;
    border-radius: 2px;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    /* Hide scrollbar but allow scrolling */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
    scrollbar-width: none;
    /* For Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.laptop-screen::-webkit-scrollbar {
    display: none;
}

.laptop-screen-content {
    width: 100%;
    display: block;
}