html,
body {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    width: 100vw;
    background-color: rgb(40, 36, 36);
    color: azure;
    /* font-family: "Lucida Console" */
}

* {
    box-sizing: border-box;
}

.top_container {
    /* padding: 6rem; 
    margin: 2.5rem; */
    /* display: flex; 
    flex-direction: row;  */
    height: 100%;
    width: 50%;
    min-height: 100%;
    padding : 5px;
    /* overflow: auto;
    resize : both; */
}

.tablayout_editor,
#contain_editors {
    /* position: absolute; */
    /* top: 40px;
    bottom: 20px; */
    height: 92%;
    width:100%;
    padding : 5px;
    /* box-sizing: border-box; */
    border-radius: 0.25rem; 
    border-width: 1px; 
    border-color: #A78BFA; 
    
    background-color: rgb(167, 139, 250, 0.2);

    /* color: #b6b2c4; */
    display: flex; 
    
}

.tablayout_buttons,
#contain_tablinks {

    display: flex; 
    flex-wrap: wrap; 
    /* position: absolute; */
    /* bottom: 5px; */
    width: 100%;
    /* gap : 2px; */
    gap: 0.15rem; 
    /* overflow-x: auto; */

    /* padding-top: 0.375rem; */
    padding-bottom: 0.375rem; 
    padding-left: 0.75rem;
    padding-right: 0.75rem; 
}


.tabcontent {
    height: 100%;
    width:100%;
    font-size: 1.6rem;
    /* overflow: auto; */

    display: inline-flex;
    gap: 10px;
    font-family: monospace;
    line-height: 21px;
    background: #282a3a;
    border-radius: 2px;
    padding: 20px 10px;
    /* height: 200px; */
    overflow-y: auto;
    overflow-x: hidden;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    /* width: 20px; */
    text-align: right;
    height: 9999px;
    font-size: 18px;
    color:#999;
    line-height: 25px;
  }

  .editor{
    height: 0px;
    width: 100%;
    border: none;
    font-size: 20px;
    line-height: 25px;
    outline: none;
    padding-right: 10px;
  }

.tablink {
    width : 110px;
    height : 35px;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem; 
    padding-left: 0.75rem;
    /* padding-right: 0.75rem;  */

    align-items: center; 
    border-radius: 0.25rem; 
    border-width: 1px; 
    font-size: 1rem;
    justify-content: space-between; 
}

.button_effect {
    display: flex;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 0.4;
    /* color: azure; */
    color : rgb(10 10 10);
}

.button_effect:hover {
    /* font-size: 1.1rem; */
    opacity: 0.8;
}

.button_effect:focus,
.selected_tab_button {
    border : none;
    border-radius: 0rem; 
    background-color: rgb(167, 139, 250, 0.2);
    opacity: 1;
    box-shadow: inset 0px 3px #ff00a0;
    color: azure;
}

.type_add_tab,
#add_tab {
    width : 35px;
    height : 35px;

    border: none;
    background: none;
    color: azure;

    padding-top: 0.375rem;
    padding-bottom: 0.375rem; 
    padding-left: 0.75rem;
    padding-right: 0.75rem; 
    
    align-items: center; 
    font-size: 1rem;
}

.closeTab {
    font-size: 1rem;
    border-radius: 0.25rem;
    padding-right: 0.25rem;  
}
.closeTab:hover {
    height: 100%;
    aspect-ratio : 1 / 1;
    background-color: rgb(234, 226, 226, 0.3);
    /* opacity: 0.1; */
    color: rgb(255, 0, 72);
    padding-left: 0.25rem;  
}

::-webkit-scrollbar {
    width: 14px;
    height: 18px;
}
::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.50);
    -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
::-webkit-scrollbar-corner {
    background-color: transparent;
}
