body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  background-image: url('./background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding-top: 20px;
}

.container {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
}

h1 {
  margin-bottom: 20px;
}

.search-box {
  margin-bottom: 20px;
}

input[type="text"] {
  padding: 10px;
  width: calc(100% - 120px);
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
}

button {
  padding: 10px 20px;
  background-color: #1DB954;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #17a74e;
}

.filter-options {
  margin-bottom: 20px;
}

.filter-options label {
  margin-right: 15px;
  font-size: 16px;
}

#results {
  margin-top: 20px;
  text-align: left;
}

.track {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.track:last-child {
  border-bottom: none;
}

iframe {
  border: none;
  border-radius: 5px;
  margin-top: 10px;
}

/* Add this to your existing CSS */
.lyrics-button {
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #1DB954;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.lyrics-button:hover {
  background-color: #17a74e;
}

.lyrics-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 80%;
  max-height: 80%;
  overflow-y: auto;
}

.lyrics-modal.active {
  display: block;
}

.lyrics-modal-content {
  white-space: pre-line; /* Preserve line breaks in lyrics */
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.overlay.active {
  display: block;
}