.clr{
    clear: both;
}
.color_panel{
    width: 18%;
    height: 80px;
    float: left;
    margin-right: 1%;
    margin-bottom: 15px;
    padding: 5px;
    font-size: 0.5em;
    line-height: 12px;;
}

.tab {
    overflow: hidden;
    width: 100%;
    
  }
  .tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    width: 24%;
    height: 50px;
    margin-right: 1%;
    margin-bottom: 5px;
    opacity: 0.7;
  }
  .tab button:hover {
    border: black 1px solid;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    border: black 1px solid;
  }
  .tabcontent {
    display: none;
  }
  .drop_box {
    width: 96%;
    margin-left: 2%;
    margin-bottom: 10px;
    /* margin: 10px 0; */
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dotted #a3a3a3;
    border-radius: 1px;
  }
  
  .drop_box h4 {
    font-size: 16px;
    font-weight: 400;
    color: #2e2e2e;
  }
  
  .drop_box p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #a3a3a3;
  }
  
  .btn {
    text-decoration: none;
    background-color: #9da5b3;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    outline: none;
    transition: 0.3s;
  }
  
  .btn:hover{
    text-decoration: none;
    background-color: #ffffff;
    color: #005af0;
    padding: 10px 20px;
    border: none;
    outline: 1px solid #010101;
  }
  .form input {
    margin: 10px 0;
    width: 100%;
    background-color: #e2e2e2;
    border: none;
    outline: none;
    padding: 12px 20px;
    /* border-radius: 4px; */
  }

  .table-detail{
    border: 1;
    width: 100%;
    color: black;
    margin-bottom: 20px;
}
.table-detail thead td{
    background-color: #cdcdcd;
    text-align: center;
    font-weight: 600;
    padding: 18px 10px;
    font-size: 1.1em;
}
.table-detail tbody td{
  background-color: #f1f1f1;
  padding: 10px;
  border: 1px solid #ffffff;
}