.song-card-img {
  border-radius: 10px;
  width: 56px;
  height: auto;
  margin: 8px;
}

.song-card, .song-card-queue2 {
  border-width: 1px;
  border-radius: 10px;
  padding: 0px;
  display: flex;
  align-items: center;
  max-width: 380px;
  cursor: pointer;
  width: inherit;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
  min-width: 350px;
}

.song-card:hover, .song-card-queue2:hover {
  outline: solid;
  outline-width: 1px;
  border-radius: 10px;
  padding: 0px;
  display: flex;
  align-items: center;
  max-width: 400px;
  cursor: pointer;
  width: auto;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
}

.song-card-name {
  max-width: 150px;
  width: 150px;
  font-size: 19px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

.song-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.song-card-artists {
  max-width: 150px;
  width: 150px;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-card-btn, .song-card-btn-menu {
  font-size: 20px;
  font-weight: bolder;
  color: white;
  border-radius: 25px;
  padding-right: 13px;
  padding-left: 13px;
  padding-bottom: 7px;
  padding-top: 7px;
  cursor: pointer;
  height: 45px;
  width: 45px;
  margin: 5px;
}

.song-card-btn:hover {
  font-size: 21px;
  font-weight: 900;
  color: white;
  border-radius: 25px;
  padding-right: 13px;
  padding-left: 13px;
  padding-bottom: 7px;
  padding-top: 7px;
  cursor: pointer;
  height: 45px;
  width: 45px;
  margin: 5px;
}

.song-card-cont1 {
  display: flex;
  align-items: center;
}

.song-card-list {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-list-header {
  font-size: x-large;
  font-weight: 600;
  max-width: 350px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-card-container {
  max-width: 380px;
  display: flex;
  width: auto;
  flex-direction: column;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  min-width: 160px;
  background-color: var(--bs-secondary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: dropdown-fade 0.2s ease-out;
  transform-origin: top right;
}

@keyframes dropdown-fade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dropdown-menu-item {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dropdown-menu-item i {
  margin-right: 12px;
  font-size: 18px;
  color: #4a6cf7;
}

.dropdown-menu-item span {
  color: var(--bs-light);
  font-size: 14px;
}

.dropdown-menu-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

