.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;
  }
  .menu-product{
    vertical-align: middle; 
    border: 1px solid #f0ecec; 
    padding: 5px; margin: 5px; 
    border-radius: 3px; 
    cursor: pointer;
  }
  .menu-product:hover {
    background-color: #29245a;
    color: white;
  }
  .menu-active {
    background-color: #29245a;
    color: white;
  }

  .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;
}
