/* css/index-style.css */

.search-tool {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 21.44px;
}

#searchInput {
  flex-grow: 1; /* Allow it to take up remaining space and center it */
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  cursor: pointer;
}

.search-tool #filterButton,
.search-tool #resetButton {
  width: 50%;
  height: 29px;
  padding: 5px;
  margin: 5px;
  box-sizing: border-box;
  cursor: pointer;
  color: white;
  background-color: rgb(151, 151, 151);
  border-radius: 5%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Effet au survol */
.search-tool #filterButton:hover,
.search-tool #resetButton:hover {
  background-color: rgb(100, 100, 100);
  transform: scale(1.1);
}

/* Effet au clic */
.search-tool #filterButton:active,
.search-tool #resetButton:active {
  transform: scale(0.9);
}


#containerSong {
  display: flex;
}

#leftSong {
  flex: 1;
}

#rightSong {
  flex: 1;
}

#popularSongs,
#recentSongs,
#filteredSongs {
  display: flex;
  flex-direction: column;
}

#popularSongs li,
#recentSongs li,
#filteredSongs li {
  cursor: pointer;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

#popularSongs li:last-child,
#recentSongs li:last-child,
#filteredSongs li:last-child {
  border-bottom: none;
}

#popularSongs li:hover,
#recentSongs li:hover,
#filteredSongs li:hover {
  text-decoration: underline;
  color: #007bff;
}

#titlePopular,
#titleRecentlyAdded,
#titlefiltered {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}

.school-logo {
  transition: transform 0.3s ease;
}

.school-logo:hover {
  transform: scale(1.1);
}
