
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

body {
  font-family: 'Lato', sans-serif !important;
  background-color: #f8f9fa;
}

.tabFrame {
  width: 100%;
  height: 95vh;
  overflow-y: auto;
  padding: 15px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  background-color: #ffffff;
}

.tabOff {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background-color: #0d6efd; /* Bootstrap primary color */
  border: 2px solid #0a58ca;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.tabOff:hover {
  background-color: #198754; /* Bootstrap success color */
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tabOn {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #198754; /* Bootstrap success color */
  border: 2px solid #146c43;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.tabOn:hover {
  background-color: #0d6efd; /* Bootstrap primary color */
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animation for smooth transitions */
@keyframes transitionIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid, .row {
  animation: transitionIn 1s;
}
