/* styles*/

body {
  background-color: #f2f2f2;
  font-family: "Helvetica Neue";
  padding-top: 4rem;
}

.goffeelogo {
      display: block;
      margin: 0 auto;
}
main{
  min-height: 85vh;
  padding-bottom: 20px;
}

.table-container{
  overflow: auto;
  max-height: 85vh;
}
.table>thead {
  position: sticky;
  top: 0;
}

#the_alert{
  width: 500px;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 120px;

}

ol.breadcrumb{
  margin-bottom: 5px;
}

.custom-indicator{
  display:none;
}
.htmx-request .custom-indicator{
  display:inline;
}
.htmx-request.custom-indicator{
  display:inline;
}

/* loader */
#loader-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  padding: 10px 30px;
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #000 #0000;
  animation: l1 1s infinite;
}
@keyframes l1 {to{transform: rotate(.5turn)}}