.inventory-admin {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-listing-btn {
  width: 128px;
  height: 40px;
  border-radius: 20px;
  color: white;
  background-color: var(--thirty);
}

.search-bar-form {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  width: 100%;
  justify-content: space-between;
}

.search-bar-form input {
  width: 90%;
  height: 40px;
  font-size: 1.2rem;
  border-radius: 20px;
  border: 0;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.search-bar-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-bar-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-bar-form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-bar-form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-bar-form input:focus {
  outline: none;
}

.search-btn {
  width: 128px;
  font-size: 16px;
  cursor: pointer;
}

.page-header > h2, h1 {
  margin: 0;
}