/**
 * @fileoverview Footer styling with white background theme
 */

.footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}
.footer-link {
  color: #1f2937;
  text-decoration: none;
  margin-right: 1rem;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-link:last-child {
  margin-right: 0;
}
.footer-link:hover {
  color: #000000;
  text-decoration: underline;
}
.play-store-badge {
  vertical-align: middle;
  transition: transform 0.2s ease;
  height: 40px;
  width: auto;
}

.play-store-badge:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .play-store-badge {
    height: 48px;
    margin-top: 0.5rem;
  }
}