html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  .form-group {
    width: 50%;
  }
}

/* Spinner Animation */
.spinner-container {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc; /* Light grey border */
  border-top: 2px solid #007bff; /* Blue color for the moving part */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* Start the spin animation */
  margin-right: 5px; /* Add some space between the spinner and text */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.table-striped tbody tr:nth-of-type(odd) {
  /*background-color: #61cbc8; */
  background-color: #ffffff;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #e6ffff;
  /*background-color: #83d6d3;*/
}

.headerrow {
  background-color: #54545c;
  color: #ffffff;
}

.defaultrow {
  background-color: #e6e6e6;
}

.btn {
  background-color: #61cbc8;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #61cbc8;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}