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 {
  margin-bottom: 60px;
}

/* Custom Teal Theme Classes */
.btn-teal {
  background: linear-gradient(135deg, #38b2ac 0%, #2c7a7b 100%);
  color: white !important;
  border: none;
  box-shadow: 0 4px 12px rgba(44, 122, 123, 0.2);
  transition: all 0.3s ease;
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 122, 123, 0.3);
  color: white !important;
}

/* Fix Navbar Z-Index Conflict */
.header.fixed-top {
  z-index: 2000 !important;
}