<! -- assets/style.css -->

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  display: flex;
  gap: 20px;
  width: 90%;
  margin-top: 20px;
}

.sidebar, .main, .qr-section {
  padding: 10px;
}

.sidebar {
  flex: 1;
  border-right: 1px solid #ccc;
}
.main {
  flex: 2;
}
.qr-section {
  flex: 1;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

button {
  margin-left: 5px;
}

.song-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.song-title {
  flex: 1;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  min-width: 100px; /* ensures equal width even with fewer buttons */
}

* {
  box-sizing: border-box;
}
