.tab {
  overflow: hidden;
  border: 1px solid #af772a;
  background-color: #af772a;
  border-bottom: none;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 0.9rem;
  color:white;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #9d6b25;
  color: white;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #f6f8fa;
  color: #8c5f21;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #af772a;
  border-top: none;
}
.tabcontentin {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

th, td{
  padding: 5px;
}
input[type=radio],input[type=checkbox],
    input.radio, input.checkbox {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 20px;
    min-height: 18px;
    min-width: 18px;
    font-weight: normal;
    cursor: pointer;
    }

.custalert {
  padding: 20px;
  width: 50%;
  margin: auto;
  background-color: green;
  color: white;
  top:50%;
  left: 50%;
  transform: translate(-50%, 50%);
  position: absolute;
}

.custclosebtn {
  float: right;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.5s;
}

.custclosebtn:hover {
  color: black;
}
.successalert{
  display:none;
  padding: 10px; 
  width: 100%; 
  background-color: green; 
  color: white;
}
.unsuccessalert{
  display:none;
  padding: 10px; 
  width: 100%; 
  background-color: red; 
  color: white;
}