@import url("https://fonts.googleapis.com/css2?family=Happy+Monkey&family=Pacifico&family=Roboto&display=swap");

html {
  background-color: #212529;
}

#btn1 {
  background-color: #35dff1;
  height: 50px;
  width: 50px;
 float: right;
 position: relative;
 left: 60px;
 top:-46px;
  border-radius: 10%;
}

select {
  width: auto; /* Make the select element full-width on mobile */
  background-color: rgba(53, 223, 241, 0.8);
  font-size: 20px;
  font-weight: italics;
  border-radius: 25px;
  font-family: "Happy Monkey", cursive;
  font-family: "Pacifico", cursive;
  font-family: "Roboto", sans-serif;
  position: relative;
  bottom: 30px;
  margin-bottom: 10px; /* Add some margin at the bottom on mobile */
}

#mainContainer {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-end;
  padding: 30px;
}

.inputsearch {
  width: 100%; /* Make the search input full-width on mobile */
  height: 40px;
  background-color: #343a40;
  color: #cecece;
}

.mainBox {
  background-color: #212529;
  width: 800px; /* Make the mainBox full-width on mobile */
  font-size: 20px;
  color: white;
  font-family: "Happy Monkey", cursive;
  font-family: "Pacifico", cursive;
  font-family: "Roboto", sans-serif;
  padding: 30px;
  border-top: none;
  border-right: none;
  overflow-y:auto;
  border-left: none;
  border-bottom: 1px solid white;
  margin-bottom: 20px; /* Add some margin at the bottom on mobile */
}

#addbtn {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  align-items: center;
  border-bottom: 1px solid white;
  padding-bottom: 30px;
}

.spanText:hover {
  opacity: 0.4;
  cursor: pointer;
}

.spanText {
  color: aqua;
  background-color: rgba(177, 224, 231, 0.5);
  font-family: "Happy Monkey", cursive;
  font-family: "Pacifico", cursive;
  font-family: "Roboto", sans-serif;
  border-radius: 25px;
  padding: 5px 10px; /* Adjust padding for better touch interaction */
}

.toDelete {
  color: rgb(255, 255, 255);
  background-color: rgba(253, 2, 2, 0.5);
  border-radius: 25px;
  padding: 5px 10px; /* Adjust padding for better touch interaction */
}

.toDelete:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(253, 2, 2, 0.25);
  border-radius: 25px;
  padding: 5px 10px; /* Adjust padding for better touch interaction */
  cursor: pointer;
}

.search-input-holder{
  width: 500px;
}
/* Media query for smaller screens (e.g., mobile phones) */
@media (max-width: 768px) {
  .mainBox {
    width:100%;
    font-size: 16px; /* Reduce font size on smaller screens */
  }
}
/* Custom dropdown */
  
