body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.over {
    background-color: rgba(59, 59, 59, 0.2) ;
}
.selected {
    background-color: black;
    color: white;
}
.header {
    text-align: center;
    font-size: 1.5em;
    margin: 15px 0 30px 0;
}
.header p {
    font-size: 0.7rem;
    margin: 0;
}

.section_table {
border: 3px solid black;
box-shadow: 0px 0px 50px rgba(59, 59, 59, 0.5);
}

.use-btn {
    margin: 0 5px 0 0 ;
}

.main_table_div{
    position: relative;
}
.popup{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px dotted black;
    border-radius: 5px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 0px 50px rgba(59, 59, 59, 1);
}

table {
    display: block;
    height: 400px;
    overflow-y: scroll;
    padding: 0 20px;
}

td {
    border-bottom: 1px solid black;
    padding: 5px 10px;
}

.table_title {
font-weight: bold;
text-align: center;
position: sticky;
top: 0;
background-color: white;
}

.section_result, .section_image {
    border: 3px solid black;
    height: auto;
    margin-top: 20px;
    box-shadow: 0px 0px 50px rgba(59, 59, 59, 0.5);
    padding-left: 20px;
}
.section_inputs{
    border: 3px solid black;
    height: auto;
    margin-top: 20px;
    box-shadow: 0px 0px 50px rgba(59, 59, 59, 0.5);
    padding-left: 20px;
    padding-bottom: 20px;
}


.command_name p {
    font-weight: bold;
    text-align: center;
    font-size: 1.5em;
    margin: 0;
}

.command_moreinfo {
    border: 1px solid gray;
    width: 95%;
    margin: 25px 0;
    padding: 5px;
    text-align: center;
    font-style: italic;
}

.inputs {
    margin-top: 20px;
    /* display: grid;
    grid-template-columns: repeat(1,1fr); */
}

.inputs>p, .selects>p{
    display: inline-block;
    width: 150px;
    margin-left: 100px;
}
.command_description {
    text-align: center;
    margin-top: 0;
}

.id_input {
    margin-left: 0;
    padding-left: 10px;
    /* border-color: ; */
    height: 2em;
}
.search {
    align-items: center;
    width: 95%;
    border-bottom: 0.5px solid black;
    display: grid;
    grid-template-columns: 30px auto;
    padding-left: 10px;
}
.search-input {
    border: 0;
    width:100%;
    height: 35px;
}
.result {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.copy {
    align-self: center;
    margin-left: 50px;
}
.result>h1 {
    text-align: center;
    font-size: 2em;
    align-self: center;
    justify-self: center;
}
@media screen and (min-width: 700px) {
        .result>h1 {
        font-size: 3.5em;
    }
} 

.fixed-inputs {
    font-family: 'Courier New', Courier, monospace;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    width: 95%;

}

#d1,#d2,#d3,#d4,#d5,#d6,#d7,#d8,#d9,#d10,#d11,#d12,#d13,#d14,#d15,#d16 {
    margin: 5px;
    width: 50px;
}

.selects {
    margin-top: 0px;
}
#option {
    height: 50px;
}
.section_image {
    display:none;
}
.image_div {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    flex-shrink: 8;
}
@media screen and (min-width: 800px) {
.section_image {
    display: block;
}
}



.footer p {
    margin: 0;
}

.footer {
    margin-top: 10px;
}

.open_input {
    height: 2em;
}
/* switch */
.get-set {
    display: block;
    margin-left: 100px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 30px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #80c28c;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #80c28c;
    /* box-shadow: 0 0 1px #2196F3; */
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

/* Tooltip for copytoClipboard */

  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
  .hidden, .command {
    display:none;
}