<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.spinner-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  position: fixed; /* Make it fixed so it stays centered */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8); /* Optional: Add a slight white background with transparency */
  z-index: 9999; /* Ensure it appears above all content */
}

html, body {
  height: 100%; /* Make sure the html and body elements take up the full height */
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased; /* For better text rendering in Safari */
  -moz-osx-font-smoothing: grayscale;
}

/* Wrapper that uses Flexbox to layout the page */
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}


.flex-container {
  display: -webkit-flex; /* Add Safari Webkit prefix */
  display: flex;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures that the container takes at least 100% of the viewport height */
}

.main-content {
  -webkit-flex: 1; /* Ensure Safari respects flex-grow */
  flex: 1; /* This makes the main content expand to fill the available space */
  padding: 20px;
}

.footer {
  background-color: #f1f1f1;
  padding: 10px;
  height: 60px; /* Set the height of your footer */
  text-align: center;
  padding-top: 20px;
  margin-top: auto; /* Ensures the footer stays at the bottom */
}

.footer {
  background-color: #f1f1f1;
  padding: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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 #258cfb;
}
</pre></body></html>