html,body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #f5f5f5;
  background-image: url("https://www.transparenttextures.com/patterns/45-degree-fabric-light.png");
}

.custom-b{
  color: #1abc9c;
  border-color: #1abc9c;
}

.custom-b:hover {
  color: #fff;
  background-color: #1abc9c;
  border-color: #fff;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-color: #1abc9c;
  border-radius: 50%;
  /* background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e); */
}

.my-custom-scrollbar {
  position: relative;
  height: 500px;
  overflow: auto;
}
.table-wrapper-scroll-y {
  display: block;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9999;
  display: flex;            /* will be overridden by d-none */
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

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