button {
  margin: auto 6px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.ul {
  list-style-type: none;
  margin: -16px 0;
  padding: 6px;
  text-align: center;
}

#ulControls {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align the content horizontally */
  list-style-type: none; /* Remove default list styling */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

#ulControls .liCtrls {
  display: flex;
  justify-content: center; /* Center align the content horizontally */
  align-items: center; /* Center align the content vertically */
  width: 100%; /* Ensure the li elements take the full width of the ul */
  padding: 8px 12px;
  margin: 6px;
  border: 1px solid silver;
  border-radius: 8px;
  background-color: black;
  white-space: nowrap;
  max-width: 800px;
}

#liSearch {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align the content horizontally */
}

#liSearch #divSearch,
#liSearch #divResults {
  display: flex;
  justify-content: center; /* Center align the content horizontally */
  align-items: center; /* Center align the content vertically */
  width: 100%;
  margin-bottom: 10px; /* Add some space between the search and results sections */
}

#imgDropdown {
  height: 12px;
  margin: 6px 12px -8px 8px;
}

#imgDropdown:hover {
  cursor: pointer;
  border: 3px solid chartreuse;
  border-radius: 8px;
}

#imgClose {
  height: 36px;
  margin: 0 8px -12px 8px;
  cursor: pointer;
}

#imgClose:hover {
  border: 3px solid chartreuse;
  border-radius: 8px;
}

/* Add this to Dropdown.css */
#divSearch {
  display: flex;
  align-items: center;
  margin-bottom: 10px; /* Add some space between the search and results sections */
}

#divResults {
  display: flex;
  align-items: center;
}

#selTracksFound {
  width: 70%;
  max-width: 800px;
  margin: 8px 6px;
  font-size: 12px;
  font-weight: bold;
  background-color: #090909;
  color: #f9f9f9;
  border: 2px solid silver;
  border-radius: 4px;
  display: block;
}
