
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.theme-toggle.btn {
  font-size: 1.25rem;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.flex-grow-1 {
  min-width: 0;
}

/* Base keyframe animations */
@keyframes bounce {
0%, 100% {
    transform: translateY(-5%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
}
50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}
.animate-bounce {
  animation: bounce 1.2s infinite;
}

.container[data-v-b7211a70] {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
