html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
  padding-bottom: 80px;
}

.footer {
  position: relative;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
  margin-top: 50px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.3rem;
}

.card {
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Prevent hover effect on static info cards */
.card.static-card:hover {
  transform: none;
  box-shadow: none;
}

.btn {
  margin-right: 5px;
}
