* {
  margin: 0;
  line-height: normal;
  padding: 0;
}
body {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#warpper {
  background-image: url("../img/BG.png");
  background-size: contain;
  background-repeat: none;
  width: 100%;
  height: 100%;
}
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: none;
  border-top: none;
  height: 90vh;
}
.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.container {
  box-sizing: border-box;
  border-radius: 25px;
  padding: 15px;
  width: 80vw;
  margin-left: 10vw;
  height: 80vh;
  background-color: antiquewhite;
  overflow-y: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
tbody {
  max-height: 60vh;
  overflow-y: auto;
}
th,
td {
  padding: 5px 3px;
  box-sizing: border-box;
}
.text_center {
  text-align: center !important;
}
#filter_data {
  margin-bottom: 5vh;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  box-sizing: border-box;
}
.filter_input {
  width: 23%;
}
.filter_input label {
  font-weight: bold;
}
.filter_input select {
  width: 100%;
  border-radius: 25px;
  padding: 10px 15px;
  margin-top: 5px;
}
.thumb_group {
  height: 20vh;
}
.to_center {
  align-items: center;
}
.table_no {
  width: 50px;
}
.table_name {
  width: 150px;
}
.table_drive {
  width: 500px;
}
.btn {
  border: none;
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.add_btn {
  float: right;
  background-color: #29bf12;
}
.btn_edit {
  background-color: aqua;
}
.btn_delete {
  background-color: red;
}
