#wpfooter {
  position: relative;
}
#Diagnostics tr {
    margin-bottom: 15px;
}
 
 /* Style the tabs */
 .tab-container {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.tab-buttons {
  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: 1px solid #93939329;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
}

/* 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;
  box-shadow: inset 0px 5px 15px 5px rgba(0,0,0,0.15);
}

/* Style the tab content */
.tab-content {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
} 

.tab-content.active {
    display: block;
}

.tab-content {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

#DYBE-scheduled textarea {
  margin-bottom: 15px;
}

/* more from BKThemes tab */
.boxes {
  display: flex;
  flex-flow: row;
  gap: 10px;
}

.box {
  border: 1px solid #ccc;
  text-align: center;
}

.one-third {
  flex: 33.333%;
}

.one-fourth {
    flex: 25%;
}

.one-fifth {
    flex: 20%;
}

.one-sixth {
    flex: 16.6667%;
}

.more-img {
  width: 75%;
  padding: 20px;
}








