body{
    margin: 0px; 
    background-color: #898989;
    
}

button{
    width: 50px;
    height: 50px;
    background: none;
    color: white;
    font-size: 15pt;
    border: none;
    display: block;
    position: relative;
}

button:hover{
    width: 50px;
    height: 50px;
    background: none;
    color: white;
    font-size: 15pt;
    border: 0.3vh solid white;
}

:root{
    --background: black; 
}

.Frayer_Parent_Holder{
    left: calc(100% / 10); 
    background: rgb(45, 45, 45);
    height: 400px;
    width: 400px;  
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow:visible;
    flex-direction: row;
    border-radius: 5px;
    border: 1px solid black;
    z-index: 1;
    border-left: 10px solid rgb(52, 52, 52);
}

.Frayer_Parent_Holder:hover{
   
   z-index: 5;
   border-left: 10px solid rgb(112, 209, 148);
   
}




.Frayer_Parent_Holder > div{
    position: relative;
    background-color:lightgray;
    border: 1px solid black;
    display: flexbox;
    flex: 1 1 calc(100%/2);
    box-sizing: border-box; 
    overflow: hidden;
}

.Frayer_Parent_Holder > div:hover{
    outline: none;
     z-index: 6;
     transition-duration: 500ms;
     /* box-shadow: -10px -10px 50px gray; */
}

.Frayer_Parent_Holder > div[name='Child1']{
 
    background-color: white;
    
}

.Frayer_Parent_Holder > div[name='Child2']{
    background-color: white;
}

.Frayer_Parent_Holder > div[name='Child3']{
    background-color: white;
}

.Frayer_Parent_Holder > div[name='Child4']{
    background-color: white;
}

.Frayer_Parent_Holder > textarea[name='Child5']{
    background-color: white;
    position: absolute;
    width: 98.5%;
    height: 50px;
    bottom: 0px;
    display: block;
    resize: none;
    outline: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: medium;
    
}



.Frayer_Parent_Holder > textarea[name='Child5']:hover{
z-index: 5;
/* box-shadow: -10px -10px 50px gray; */
}



.Frayer_Parent_Holder > textarea[name='Child5']::placeholder{
    color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    outline: none;
}



.ToolBar{
    width: 50px;
    height: 100%;
    background: rgb(45, 45, 45); 
    position: fixed;
    display: block;
}

div[name='MiddleChild']{
    position: absolute;
    min-width: calc(100%/3);
    min-height: calc(100%/3);
    max-width: 200px;
    max-height: 200px;
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%);
    z-index: 5;
    background-color: white;
}

.Frayer_Parent_Holder > div > label{
    user-select: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 5px;
    
}



.Frayer_Parent_Holder > div{
  text-align: center;

}


.InnerTextPrompts{
    width: 100%;
    height: 100%;
    background-color: none;
    position: absolute;
    top: 10px;
    overflow: scroll;
    /* scale: 0.8; */


    transform: scale(.9);
    transform-origin: center;
    color: rgb(100, 138, 236);
    outline: none;
    text-align: left;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    
     flex-wrap: wrap;

     /* Limit the width of the box */
     word-wrap: break-word; /* Break long words if necessary */
     overflow-wrap: break-word;
}

.InnerTextPrompts:hover{
    text-align: start;
}



.InnerTextPrompts > img{
    height: calc(100%/ 2);
    cursor: pointer;
   
    
}

.InnerTextPrompts > img:active{
    transition-duration: 500ms;
    position: absolute;
    left: 50%;
    top: 50%;
    height: calc(100% + 10);
    display:flex;
    transform: translate(-50%, -50%) scale(1.5);
   transform-origin: center;
   
   
}



.body{
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
    background: none;
    height: max-content;
    width: 100%;
    position: relative;

}