.main-content-container{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.search-bar-container{
  display: flex;
  justify-content: space-between;
  width: 60%;
  max-width: 768px;
  height: 56px;
  background-color: rgb(48, 48, 48);
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 28px;
  margin-bottom: 150px;
}


.search-bar{
  background-color: transparent;
  border: none;
  color: white;
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 300px;
  height: 32px;
}


.search-bar::placeholder{
    color: rgb(174, 174, 174);
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.left-side-bar{
  display: flex;
  align-items: center;
  gap: 8px;
}

.right-side-bar{
  display: flex;
  align-items: center;
  gap: 8px;
}


.home-title{
  color: white;
  font-size: 28px;
  font-weight: 400;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.search-bar-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  background-color: rgb(66, 66, 66);
  padding: 8px 8px;
  border-radius: 100%;
  margin-bottom: 4px;
  cursor: pointer;
}

.add-button {
  background: none;
  border: none;
}