
:root {
    --light-color-mode: rgb(228, 228, 228); 
    --light-text-mode: rgb(64, 64, 64); 
    
  }
/* background -> rgb(241, 241, 241);   color-text--> rgb(39, 39, 39)*/





/* this is the best light color 
--light-color-mode: rgb(64, 64, 64); 
--light-text-mode: rgb(228, 228, 228); */




* {
    font-family: system-ui, -apple-system;
    font-size: 10pt;
 color: var(--light-text-mode); 
}




body {
    background: var(--light-color-mode);
    overflow-x: hidden;
    margin: 0px;

}

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


    /* Width of the scrollbar */
}


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





@media screen and (max-width: 790px) {
    .item01 {
        width: 90%;
        height: max-content;
    }

}



.item02 {

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






.class_items_holder {
    display: flex;
    background: none;
    position: relative;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 20px;
    column-gap: 20px;
    height: max-content;
    justify-content: center;
    height: 800px;
    margin: auto;
    top: 30px;
   
    max-width: 600px;
    min-width: 250px;
}










.class_item_01 {
    width: 85%;
    height: 50px;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 0;
    background: rgba(255, 255, 255, 0);
}





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






.classWidget01 {
    top: 5px;

    background: rgb(223, 223, 223); 
     height: 100px;
    padding: 10px;
    border-radius: 2vh;

    max-height: 80%;
    min-height: max-content;
    width: 97%;
   
    z-index: 5;
    position: relative;
    overflow-x: hidden;
    line-height: 20px;
    font-size: 12pt;
    font-weight: normal; /* Adjusted from '50' to 'normal' */
    resize: none;
    outline: none;
    color: rgb(77, 77, 77);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 
                 'Lucida Grande', 'Lucida Sans Unicode', 
                 Geneva, Verdana, sans-serif;
}

.item01 {

    width: 100%;
    max-width: 800px;
    height: auto;
     border: none; 
    position: relative;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;

}

.class_item02_holder {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
    height: 400px;
    z-index: 4;
    margin: auto;
    top: -200px;
    max-width: 600px;
    min-width: 250px;
    width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 0);
    column-gap: 20px;
    cursor: pointer;
}

.classWidget01:focus {
    cursor: auto;
    outline: 2px dashed rgba(0, 0, 0, 0.225);
}



/* Custom scrollbar for .classWidget01 */
.classWidget01::-webkit-scrollbar {
   display: none;
}

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

/* Thumb (draggable part) */
.classWidget01::-webkit-scrollbar-thumb {

    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;

}







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

/* Thumb (draggable part) */
body::-webkit-scrollbar-thumb {
 
    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 */
}




.Title_holder {
    width: 80%;
    height: 50px;
    left: 50px;
    border: none;
    margin: auto;
    outline: none;
    text-align: left;
    padding-left: 10px;
    position: absolute;
    background: rgba(207, 207, 207, 0);
    
}

#Title_After_ {
    border: none;
    position: relative;
    display: inline-block;
    z-index: 6;
    color: var(--light-text-mode); 
    outline: none;
    width: max-content;
    max-width: 100%;
    min-width: 200px;
    font-weight: 300;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    

}

#Title_After_:hover {
    outline: 1px dashed gray;
}



.add_btn {
    border: 1px solid rgb(69, 198, 173);
    background: var(--light-color-mode);
    z-index: 1;
    color: var(--light-text-mode);
    height: 50px;
    width: 50px;
    border-radius: 1vh;
    font-size: 15pt;
    user-select: none;
    text-align: center;
}


.add_btn:hover {
    cursor: pointer;
    background: rgb(69, 198, 173);
    color: white;
    transition-duration: 800ms;
}
















.Folder-Container {
    background: none;
    height: max-content;
    width: 85%;
    z-index: 10;
    position: relative;
    top: -70px;
    display: inline-flex;
    transition: 500ms;
    background: rgba(0, 0, 0, 0);
}

.inner-Folder {
    height: max-content;
    background: rgba(255, 255, 255, 0);
    position: relative;
    padding: 0px;
    overflow: hidden;
    width: 79%;
    border-top-right-radius: 2vh;
    display: flex;
    flex-wrap: nowrap;
    row-gap: 5px;
    z-index: 10;
}

.inner-Folder::-webkit-scrollbar {
    background: none;
   
}

.inner-Folder::-webkit-scrollbar-thumb {
    background: none;

}


.add_folder_btn {
    width: max-content;
    height: max-content;
    border-radius: 0vh;
    border: 0px solid black;
    position: absolute;
    border-radius: 1vh;
    padding: 10px;
    background: var(--light-color-mode);
    right: 0px;
    z-index: 4;
    cursor: pointer;
    color: var(--light-text-mode);
    user-select: none;
}


.add_folder_btn:hover {
    transition: ease-out 500ms;
    cursor: pointer;
    background: rgb(69, 198, 173);
    color: white;
}

.add_folder_btn_sAMPLE {
   width: max-content; 
    height: max-content;
    background: none;
    padding: 5px;
    border: 1px solid rgba(121, 248, 218, 0);
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
    outline: none;
    border-radius:2vh ;
    
    background: rgba(225, 225, 225, 0.277);
    user-select: none;
}

.add_folder_btn_sAMPLE:hover {
    transition-duration: 500ms;
    background: rgb(71, 185, 174);
    color: rgb(234, 234, 234);
    padding: 7px;
}

.add_folder_btn_sAMPLE:focus {
    background: gray;
    color: white;
    padding: 7px;
}



.Content_Home_Holder {
    display: block;
    margin: auto;
    position: relative;
}

.Menue_Holder_Left{
    background: rgb(184, 184, 184);
    position: fixed;
    top: 0px;
    width: 28%;
    height: 100%;
    border-right: 0.05vh solid var(--light-text-mode);
    overflow-y: scroll;
    scrollbar-width: 0.05px; /* For Firefox */
    scrollbar-color: var(--light-color-mode);/
 
}


/* For WebKit browsers (Chrome, Edge, Safari) */
.Menue_Holder_Left::-webkit-scrollbar {
    width: 1px; /* Thin scrollbar width */
  }
  
  .Menue_Holder_Left::-webkit-scrollbar-track {
    background: transparent; /* Background color of the track */
  }
  
  .Menue_Holder_Left::-webkit-scrollbar-thumb {
    background: #4a4a4a; /* Color of the thumb */
    border-radius: 10px; /* Make the thumb rounded */
    height: 10px; /* Optional: Control minimum thumb height */
  }

.Menue_Holder_Right {
    border-left: 0.05vh solid var(--light-text-mode);
    background: rgb(184, 184, 184);
    position: fixed;
    top: 0px;
    width: 28%;
    height: 100%;
    right: 0px;
}



@media screen and (max-width: 1320px) {
    .Folder-Container {
        width: 90%;
    }
   
    .Menue_Holder_Right {
        background: inherit;
        position: fixed;
        top: 0px;
        width: 100%;
        height: 100%;
    }

    .Menue_Holder_Left {
        background:inherit;
        position: fixed;
        top: 0px;
        width: 100%;
        height: 100%;
    }
}



div.Mode_Switch_Holder[name="inner"] {
    width: 5px;
    height: 5px;
    border-radius: 5vh;
    background-color: var(--light-color-mode);
    position: relative;
    border: 5px solid rgb(206, 206, 206);
}

div.Mode_Switch_Holder[name="outer"] {
    width: 60px;
    height: 15px;
     display: flex;
     justify-content: right;
     align-items: center; 
    position: relative;
    background-color: rgb(206, 206, 206);
    border: 1vh solid var(--light-color-mode);
    border-radius: 5vh;
    padding: 10;

}

.Menue_Holder_Left_item[name="Preference_Darkmode"]{
    width: 100%;
    position: relative;
    margin: auto;
    height: max-content;
    background-color: var(--light-color-mode);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;  
    row-gap: 50px;
    padding-top: 10px;
    padding-bottom: 10px;

}