/* General Reset */
* {
  margin: 10;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background: url('cm3.jpeg') no-repeat center center/cover;
  color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#search-container {
    margin-bottom: 20px;
}

#song-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.song-item button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.song-item button:hover {
    background-color: #2e4055;
}


/* Header */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: transparent;
}

.logo {
  width: 50px;
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav button {
  background: transparent;
  color: #1db954;
  border: 1px solid rgba(55, 255, 0, 0.881);
  border-radius: 5px;
  margin: 0 10px;
  padding: 5px 10px;
  cursor: pointer;
}

.header nav input {
  padding: 5px;
  border: 1px solid #00ff59;
  border-radius: 20px;
  width: 90px;
  outline: none;
  color: #ffffff;
  background-color: transparent;
}

/* Main Content */
.song-list {
  width: 90%;
  margin: 20px auto;
  overflow-y: auto;
  height: calc(100vh - 200px);
}

.song {
  display: flex;
  align-items: center;
  padding: 1px;
  background: #2b511f54;
  margin-bottom: 10px;
  border-radius: 91px;
  cursor: pointer;
}

.song img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 5px;
}

.song h3 {
  color: #00d5ff;
  flex: 1;
}

.song.active {
  background: #21894c8f;
}

/* Footer */
.player-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px;
  background: #3d3d3d3e;
  position: sticky;
  bottom: 0;
}

.player-bar input {
  flex: 1;
  margin: 0 10px;
}

.player-bar span {
  color: #aea3a3;
}

