/* colors using variables */
:root {
  --primary-clr: #ffe9d2;
  --secondary-clr: #ffe1c4;
  --title-clr: #ff8816;
}

/* layout styles */
nav {
  background-color: var(--primary-clr);
  border-bottom: 10px solid var(--secondary-clr);
}
nav a {
  text-transform: uppercase;
  color: var(--title-clr);
}
nav a span {
  font-weight: bold;
}
nav .sidenav-trigger {
  margin: 0;
}
/* recipe styles */
.recipes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0 20px;
  margin-top: 15px;
}
.enter-recipe {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
i {
  cursor: pointer;
  user-select: none;
}
span.activator {
  cursor: pointer;
}
span.badge {
  font-weight: 400;
  height: auto;
  font-size: 1em !important;
  margin: 15px 0 0 0;
  padding: 0.2em 0.7em;
  background-color: var(--title-clr) !important;
}
/* form styles */
.add-button {
  position: fixed;
  bottom: 6%;
  right: 5%;
  z-index: 20;
}
.add-btn {
  background-color: var(--title-clr) !important;
}
.btn-floating.btn-large {
  width: 50px;
  height: 50px;
}
.btn-floating.btn-large i {
  line-height: 50px;
  font-size: 2.3rem;
}
.update-btn {
  background-color: var(--title-clr) !important;
}
input {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.add-modal button {
  background-color: var(--title-clr) !important;
  box-shadow: 1px 1px 3px rgba(90, 90, 90, 0.2);
}
form .input-field {
  margin-top: 30px;
}
.side-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.side-menu li:nth-child(9) {
  margin-bottom: auto;
}

.entry-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
.entry-page h5 {
  margin-bottom: 30px;
}
.entry-page a + a {
  margin-left: 30px;
}
@media (min-width: 700px) {
  #toast-container {
    top: auto !important;
    right: auto !important;
    left: 7vh;
    bottom: 5vh;
  }
}
@media (max-width: 700px) {
  .add-button {
    bottom: 5%;
    right: 10%;
  }
}
