.footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-color);
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: relative;
  bottom: 0;
}

/* Ensure proper page structure */
html {
  height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
  padding-bottom: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
}

.footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.footer a:hover {
  color: var(--primary-hover);
  text-decoration: none;
  background-color: var(--hover-bg);
}
