.modal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-popup-mid {
    background-color: #fff;
 
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
}

.popup-body {
    margin-bottom: 20px;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #e5e7eb;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.popup-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel-btn {
    background-color: #f44336;
    color: #fff;
}

.ok-btn {
    background-color: #4caf50;
    color: #fff;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.container {
    
    display:grid;
    
    grid-template-columns: 15% 70% auto;
    
    padding-top: 2rem;

    margin-bottom: 10%;


}




.editor-toolbar {
    margin: auto;
    align-items: center;
    background-color: #e5e7eb;
    display:inline-flex;
    border-top: 1px solid #dcdfe4;
    width: 100%;
    border-top-left-radius: 7px;

    border-left: 1px solid #dcdfe4;
    border-right: 1px solid #dcdfe4;
    border-top-right-radius: 7px;
    color: #4b5563;
    padding: 0.5rem;
    box-sizing: border-box;
}
.options-group {

    margin-right:3rem;
    display:inline-flex

}

.option {


    margin-right: 7px;
    cursor: pointer;


}


.insert-table-container {
  position: relative;

}


.option.active{
  color:rgb(26 86 219);
}

.editor-object {

    min-height:50px;
    border: 1px solid #dcdfe4;
    padding: 10px ;
    width: 100%;
    box-sizing: border-box;
}

.editor-body {


    min-height: 300px;
    border: 1px solid #dcdfe4;
    padding: 10px ;
    overflow-y: auto;

}

/* .active {
    color: #0090dd;
    font-weight: bold;
} */

.color-input{
    display: none;
}

.font-size{

    text-align: center;

    cursor: pointer;

}


.editor-color-bar{
    cursor: pointer;
    width: 15px;
  height: 3px;
  margin-top: -0.1rem;
  border-radius: 16px;
}



.box-color-bar{
    cursor: pointer;
    width: 15px;
  height: 3px;
  border-radius: 16px;
}


.font-size-input {
    width: 25px;
  height: 20px;
  background-color: whitesmoke;
  margin-top: 1px;
    /* for Firefox */ 
    -moz-appearance: none; 
    /* for Safari, Chrome, Opera */ 
    -webkit-appearance: none;   
  
    padding: 0px;
    border: 1px solid;
    text-align: center;
    font-size: 12px;
}
.option label {

    cursor: pointer;
}

.font-type-selector{

    font-size: 10px;



}

.unselectable {
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}


.modal-blur {



    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    padding: 10%;

}

.modal{
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;

}




.stretched{


    width: 100%;
    display: flex;
    justify-content: space-between;
}



.suggestions {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 10;
  }
  
  .suggestions p {
    cursor: pointer;
    margin: 0;
    padding: 5px 10px;
  }
  
  .suggestions p:hover {
    background-color: #eee;
  }


  .badge{
padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  color: #1E40AF;
  background-color: rgb(225 239 254);
  border: solid 1px rgb(118 169 250);
  text-align: left;
  }

  .file-editor{

    overflow-y: auto;
  }


  .resize {
    
    position: relative;
    transition: all 0.25s;
    cursor: move;
  }
  
  .resize .resize-line {
    position: absolute;
    transition: all 0.25s;
  }
  .resize:hover .resize-line {
    border-color: rgba(123,53,132,1);
  }
  .resize .resize-top-line {
    top: 0;
    left: 0;
    right: 0;
    height: 5px; /* 5px for the mouse cursor update size */
    border-top: 2px solid #1e40af; /* 1px for the "border" size */
    cursor: n-resize;
  }
  .resize .resize-bottom-line {
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px; /* 5px for the mouse cursor update size */
    border-bottom: 2px solid #1e40af; /* 1px for the "border" size */
    cursor: s-resize;
  }
  .resize .resize-left-line {
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px; /* 5px for the mouse cursor update size */
    border-left: 2px solid #1e40af; /* 1px for the "border" size */
    cursor: w-resize;
  }
  .resize .resize-right-line {
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px; /* 5px for the mouse cursor update size */
    border-right: 2px solid #1e40af; /* 1px for the "border" size */
    cursor: e-resize;
  }
  .resize .resize-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid #ffffff;
    background: #1e40af;
    opacity: 0;
    transition: all 0.25s;
  }
  .resize .resize-top-left-corner {
    top: -3px;
    left: -3px;
    cursor: nw-resize;
  }
  .resize .resize-top-right-corner {
    top: -3px;
    right: -3px;
    cursor: ne-resize;
  }
  .resize .resize-bottom-left-corner {
    bottom: -3px;
    left: -3px;
    cursor: sw-resize;
  }
  .resize .resize-bottom-right-corner {
    bottom: -3px;
    right: -3px;
    cursor: se-resize;
  }
  .resize:hover .resize-corner {
    opacity: 1;
  }



  .table-toolbar{
    position: absolute;
    z-index: 9999999;
    background-color: #1e40af;
    bottom: -37px;
    right: 23px;    
    border-radius: 18px;
    
    color: #eee;
}


.table-toolbar-container{

  grid-template-columns: auto auto auto auto;
  display: inline-grid;
  padding-left: 5px;
  padding-right: 5px;
}




  .table-toolbar-button{
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 6px;
    padding-bottom: 6px;
    cursor: pointer;
  }

/* 
  td{

    padding: 9px;
  } */
.t-insert-col {

    width: 16px;
    height: 16px;
    margin: 3px;
    border: solid 1px gray;
    border-color: #e9e9e9;
    background-color: #f8f8f8;


}


.t-insert-col.active {

    border-color: #c3d9ff;
    background-color: #ddeafb;


}


.t-insert-row {

    display: flex;
    flex-direction: row;

}

.t-insert {

    position: absolute; z-index: 9999999;
    background-color: #fff;
    -webkit-user-select: none;
            user-select: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e2e2;
    box-shadow: 0px 10px 40px 10px rgba(140, 152, 164, 0.175);
    border-radius: 0.3125rem;
    padding: 10px;
}

.t-insert-label{
  text-align: center;
  color: #4d5765;
}




/*# sourceMappingURL=main.css.map*/