
#select-btn, #paste-btn {
  margin: 0 10px;
}

#fileName {
  width:30px
}

#jq_expr {
    font-family: 'Courier New', Courier, monospace; 
    font-size: larger;
    font-weight: bold;
    margin:5px;
}

#change_lang, #hide-show-explanation{
    float:right;
    cursor:pointer;
    color:blue;
    border:thin solid blue;
    padding: 2px;
    margin: 3px;
    border-radius: 4px;
}

#explanation {
    border: 1px solid black;
    border-radius: 6px;
    padding: 5px;
}

/*  drag and drop of file */
body.dragging::before {
  position: fixed;
  left: 0; width: 100%;
  top: 0; height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  background-color: rgba(255, 255, 0, .3);
  pointer-events: none;
}

body.dragging:lang(en)::before {
  content: "Drop the file anywhere on this page";
}

body.dragging:lang(fr)::before {
  content: "Glisser le fichier sur cette page";
}

label, input[name=json_type] {
  float:right
}

#jq_expr {
  width: 98%
}

/* custom styles for highlight-within-textarea */
/* .hwt-container {
    background-color: white;
} */

.hwt-content {
    width: 800px;
    height: 600px;
    padding: 2 px;
    border: 1px solid #adb5bd;
    color: inherit;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
}

.hwt-input:focus {
    outline-color: #495057;
}

.hwt-content mark {
    border-radius: 3px;
    background-color: #d0bfff;
}

.hwt-content mark.red {
    background-color: #ffc9c9;
}

.hwt-content mark.blue {
    background-color: #a3daff;
}

.hwt-content mark.yellow {
    background-color: #ffec99;
}

