body {
  min-height: 100vh;
  /*so footer works*/
  margin: 0;
  display: flex;
  flex-direction: column;
}

.smass-content-holder {
  flex: 1;
  /*so footer works*/
}

.input-field-w-label label {
  margin-bottom: 3px;
}

.separation-line {
  border-bottom: 2px solid #0d6efd;
}

.centered-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.centered-widget a {
  display: block;
  text-align: center;
}

.centered-widget img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.default-button {
  background-color: #3873a1;
  color: #fff;
  padding: 4px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.default-button:hover {
  background-color: #2c597b;
}

.preset-views {
  margin-bottom: 5px;
}

.preset-views > *:not(.preset-views) {
  margin-right: 7px;
}

.nav-buttons {
  display: none;
  bottom: 80px;
  right: 80px;
  position: fixed;
}


.form-switch .form-check-input {
  margin-left: -1.5em !important;
  margin-top: 11px !important;
  }


/*ReportDetails & BulkReports loading icons css*/
    #loading-icon {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1000;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 8px solid rgba(0, 0, 0, 0.1);
      border-top-color: #000;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }


.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.load-indicator{
      display:none;
}
.htmx-request .load-indicator{
    display:inline;
}
.htmx-request.load-indicator{
    display:inline;
}
