/* Loading Animation Component Styles */
.loading-spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(17, 24, 39, 0.7);
}
.music-jumpers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.music-note-face {
  width: 48px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}
.jump1 {
  animation: music-jump 1.2s infinite cubic-bezier(.5,1.8,.5,1) 0s;
}
.jump2 {
  animation: music-jump 1.2s infinite cubic-bezier(.5,1.8,.5,1) 0.3s;
}
.jump3 {
  animation: music-jump 1.2s infinite cubic-bezier(.5,1.8,.5,1) 0.6s;
}
@keyframes music-jump {
  0%   { transform: translateY(0); }
  10%  { transform: translateY(-18px) scale(1.08); }
  20%  { transform: translateY(-28px) scale(1.12); }
  30%  { transform: translateY(-18px) scale(1.08); }
  40%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
