.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: "liga";
}

body {
  /* margin: 0;
  padding: 0; */
  box-sizing: border-box;
  font-family: sans-serif;
}

.search__bar {
  max-width: 500px;
  border: solid 1px #ccc;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px 10px;
  margin: 100px auto;
}

.search__bar:focus-within {
  border: solid 1px #aaa;
  box-shadow: 0px 2px 5px rgb(41, 40, 40, 0.3);
}

.search__bar input {
  border: none;
  outline: none;
  padding: 10px;
  font-size: 18px;
  flex: auto;
}

.actions {
  display: flex;
  gap: 5px;
}

.search__bar .actions button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  color: #999;
  transition: transform .3s ease-in-out;
}

.search__bar .actions button:hover {
  color: #2979e2;
  transform: scale(110%);
}