.song-menu {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.song-menu.hidden {
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
}

.music-item{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.song-menu button{
  color: white;
}

.premium-card{
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
}

.card{
        background:#111113;
        border:1px solid #27272a;
    }

    .metric-card{
        background:linear-gradient(
        180deg,
        rgba(24,24,27,.95),
        rgba(15,15,15,.95)
        );
        border:1px solid #27272a;
    }

    .no-scrollbar::-webkit-scrollbar{
        display:none;
        }

        .no-scrollbar{
        -ms-overflow-style:none;
        scrollbar-width:none;
        }