* {
    font-family: system-ui, -apple-system;
}

.inner-div1 {
    width: 50%;
    margin-right: 0px;
    float: right;
    background: #337ab7;
    padding: 50px 0px;
}

.inner-div2 {
    width: 50%;
    margin-right: 0px;
    float: left;
    background: #dd2c00;
    padding: 50px 0px;
}

p {
    text-align: center;
}

.class_item02_holder {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    background: orange;

    flex-direction: row;
    row-gap: 20px;
    column-gap: 20px;
    height: 400px;
    justify-content: center;

    margin: auto;
    top: -200px;
    max-width: 600px;
    min-width: 250px;
    background: inherit;

}

.item01 {
    width: 250px;
    height: 250px;
    border: none;
    box-shadow: 0px 0px 20px rgb(46, 46, 46);
    background-color: rgb(219, 219, 219);
    border-radius: 5px;
    overflow: hidden;
    transition-duration: 500ms;
    position: relative;
    border-bottom: 40px solid rgba(236, 236, 236, 0);
    padding: 10px;

}



@media screen and (max-width: 790px) {
    .item01 {
        width: 520px;
        height: 250px;
        border: 1px solid black;
        box-shadow: 0px 0px 50px rgb(46, 46, 46);
        background-color: rgb(236, 236, 236);
        position: relative;
    }
}



.item02 {

    height: max-content;
    width: max-content;
    background-color: none;
    padding: 50px;
    color: gray;
    font-family: arial;
    user-select: none;
}

body {
    background-color: #3f3f3f;
    overflow-x: hidden;

}




.class_items_holder {
    display: flex;
    position: relative;
    flex-wrap: wrap;

    flex-direction: row;
    row-gap: 20px;
    column-gap: 20px;
    height: 400px;
    justify-content: center;

    margin: auto;
    top: 30px;
    max-width: 600px;
    min-width: 250px;

    height: 800px;
}






.add_btn {
    border-radius: 50vh;
    border: none;
    background: rgba(65, 65, 65, 0);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    z-index: 1;
    color: white;
    height: 60px;
    width: 60px;
    font-size: 15pt;
    user-select: none;

}


.add_btn:hover {
    transition-duration: 500ms;
    border: 5px solid rgba(255, 255, 255, 0.295);
    cursor: pointer;
}

.slider_holder {

    height: 100%;
    background-image: linear-gradient(to left, #ffffff, #cecdcd);
    text-align: right;
    opacity: 20%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    /* width: 100%; */

}




.class_item_01 {
    width: 85%;
    height: 50px;
    background-color: rgb(27, 27, 27);
    border-radius: 10px;
    position: relative;
}





/* -------------- */





#classWidget01::before {
    transition-duration: 800ms;
}



.classWidget01 {
    background: inherit;
    height: 90%;
    width: 100%;
    border: none;
    z-index: 10;
    position: relative;
    text-align: left;
    background: none;
    overflow-y: scroll;
    overflow-x: hidden;
    line-height: 20px;
    font-size: 10pt;
    resize: none;

}

.classWidget01 * {
    color: inherit !important;
    /* Inherit black text color */
    background-color: transparent !important;
    /* Remove any background colors */
}

.classWidget01:hover {
    outline: none;
    outline: 2px dashed rgba(0, 0, 0, 0.225);
}



/* Custom scrollbar for .classWidget01 */
.classWidget01::-webkit-scrollbar {
    width: 5px;
    height: 20px;
    /* Width of the scrollbar */
}

/* Track (background part of the scrollbar) */
.classWidget01::-webkit-scrollbar-track {
    background: transparent;
    /* Transparent track background */
}

/* Thumb (draggable part) */
.classWidget01::-webkit-scrollbar-thumb {
    transition-duration: 500ms;
    background: rgba(119, 118, 118, 0.185);
    cursor: grab;
    /* Black color for the scrollbar thumb */
    border-radius: 10px;
    /* Optional: rounded corners */
}

/* Thumb hover */
.classWidget01::-webkit-scrollbar-thumb:hover {
    background-color: #545454;
    /* Darker color on hover */
}

.del_widget_btn {
    border: none;
    background: inherit;
    height: 20px;
    position: relative;
    right: 0px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    user-select: none;
}

.del_widget_btn:hover {
    color: rgb(168, 91, 91);
}






footer {
    height: max-content;
    width: 100%;
    background-color: inherit;
    position: relative;
    top: -500px;
    display: block;
    margin: auto;
    color: #999999;
    z-index: -5;

}







/* Custom scrollbar for .classWidget01 */
body::-webkit-scrollbar {
    width: 10px;
    height: 20px;
 
    /* Width of the scrollbar */
}

/* Track (background part of the scrollbar) */
body::-webkit-scrollbar-track {
    background: transparent;
    /* Transparent track background */
}

/* Thumb (draggable part) */
body::-webkit-scrollbar-thumb {
    transition-duration: 500ms;
    background: rgba(119, 118, 118, 0.185);
    cursor: grab;
    /* Black color for the scrollbar thumb */
    border-radius: 10px;
    /* Optional: rounded corners */
}

/* Thumb hover */
body::-webkit-scrollbar-thumb:hover {
    background-color: #545454;
    /* Darker color on hover */
}