body {
  background-color: #e9edf2;
  font-family: Roboto, sans-serif;
}

.wrap {
  flex-wrap: wrap;
}

.right-align {
  text-align: right;
}

.nav-bar {
  background-color: #b4d7eb;
  padding: 0.5rem 0 0;
}

.logo-img {
  height: 70px;
  margin-left: 1rem;
}

.logo-name {
  font-family: "Bakbak One", cursive;
  font-size: 2rem;
  margin-bottom: 0;
  position: relative;
  bottom: 1.2rem;
  left: 0.5rem;
}

#library-tab {
  font-size: 1.1rem;
  font-weight: 500;
  color: black;
  text-decoration: none;
  position: relative;
  top: 1.85rem;
  left: 2rem;
}

#library-tab:hover {
  font-size: 1.2rem;
}

.search-btn-container {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

#search-btn {
  height: 25px;
  width: 25px;
  margin: 1.5rem 1rem 0;
}

#search-btn:hover {
  height: 30px;
  width: 30px;
}

[data-view="search"] {
  height: 100vh;
  width: 100%;
  background-image:
    url(
      "../images/search-background.png"
    );
  background-size: cover;
  background-position: center;
  color: white;
}

.background-img-overlay {
  background-color: rgb(0, 0, 0, 0.35);
  position: absolute;
  height: 100vh;
  width: 100%;
}

.search-content {
  margin: 2rem 1rem;
}

[data-view="search"] h1 {
  font-weight: 100;
  font-size: 2.5rem;
}

[data-view="search"] input {
  border: none;
  border-radius: 5px;
  width: 100%;
  height: 2.5rem;
  padding-left: 1rem;
}

[data-view="search"] p {
  font-weight: 500;
  font-size: 0.8rem;
}

span {
  opacity: 60%;
}

.recipe-card {
  border-radius: 10px;
  background-color: #ffff;
  box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.7);
  max-width: 21rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
  list-style-type: none;
}

.img-container {
  height: 18rem;
}

.cocktail-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.recipe-content {
  padding: 1rem;
  position: relative;
}

.recipe-content h1 {
  font-weight: 400;
}

.like-btn {
  width: 2rem;
  position: absolute;
  right: 0.75rem;
  top: 2.4rem;
}

.unlike-btn {
  width: 2rem;
  position: absolute;
  right: 0.75rem;
  top: 2.4rem;
}

.recipe-content li {
  line-height: 1.5;
}

[data-view="library"] h2 {
  text-align: center;
}

.recipe-card-list {
  padding: 0;
}

.modal-display {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
}

.modal-backfall {
  background-color: rgb(0, 0, 0, 0.65);
  height: 100%;
  width: 100%;
}

.option {
  background-color: #ffff;
  border-radius: 10px;
  width: 20rem;
  position: relative;
  top: 15rem;
  text-align: center;
  font-size: 1.2rem;
}

.perm-col-half {
  width: 50%;
}

.cancel-btn,
.confirm-btn {
  border: none;
  border-radius: 5px;
  height: 2rem;
  margin: 1rem 0;
  cursor: pointer;
}

.cancel-btn {
  background-color: #b4d7eb;
}

.confirm-btn {
  background-color: red;
  color: white;
}

.no-recipe-msg,
.none-saved-msg {
  text-align: center;
  margin-top: 5rem;
  font-weight: 300;
}

.network-error-msg {
  min-width: 20rem;
  margin: 2rem;
}

@media screen and (min-width: 768px) {
  .recipe-card {
    max-width: 50rem;
  }

  .img-container {
    height: 29rem;
  }

  .cocktail-img {
    border-radius: 10px 0 0 10px;
  }

  .network-error-msg {
    text-align: center;
    min-width: none;
  }
}
