html {
  font-size: 14px;
}

@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;
}

html {
  position: relative;
  min-height: 100%;
}



body {
  background-color: #e0f7fa; /* Light sky blue background */
  color: #01579b; /* Dark blue text */
  font-family: Arial, sans-serif;
  margin-bottom: 60px;
}

h1, h2, h3, h4, h5, h6 {
  color: #0277bd; /* Sky blue headings */
}

.navbar, .footer {
  background-color: #0288d1; /* Sky blue navbar and footer */
  color: white;
}

.header {
  background-color: #0288d1; /* Sky blue header */
  color: white;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Adjust based on your footer height */
}


.btn-primary {
  background-color: #0288d1;
  border-color: #0288d1;
}

.table {
  background-color: white;
  border: 1px solid #0288d1;
}

.table th, .table td {
  border: 1px solid #0288d1;
}


