/* Common Footer Style */
.app-footer {
  text-align: center;
  color: white;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  animation: slideUpFade 0.8s ease-out 0.3s both;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-footer p {
  opacity: 0.9;
  font-size: 0.95em;
  margin: 0;
}

.app-footer a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.app-footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
