body {
  padding-top: 2rem;
  transition: padding-top 0.3s ease;
}

body.notif-hidden {
    padding-top: 1rem; /* doar navbar */
}

#top-notification {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.3rem 0.8rem;
  background-color: #ffc107;
  color: #212529;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

#top-notification.hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  padding: 0;
  overflow: hidden;
}

#last-playing img {
  height: 20px;
  vertical-align: middle;
}

.animated-gradient {
  background: linear-gradient(45deg, #f39c12, #e74c3c, #8e44ad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientAnimation 3s ease infinite;
}

@keyframes gradientAnimation {
  0% {background-position: 0%;}
  100% {background-position: 100%;}
}

.span-title {
    background: linear-gradient(
        to right,
        #ff6a00,
        #ee0979
      );
    -webkit-background-clip: text; /* um to work a fix "Also define the standard property 'background-clip' for compatibility" */
    -webkit-text-fill-color: transparent;
}

.model-container {
    display: flex;
}

model-viewer {
    width: 400px;
    height: 400px;
}