/* colours */
:root{
  --primary: #7cbfd1;
  --secondary: #227E97;
  --title: #074353;
}

.card-row-span {
  display: display;
}

@media screen and (max-width: 850px) {
  .card-row-span {
    display: block;
  }
}


/* layout styles  */
nav{
  background: var(--primary);
  border-bottom: 10px solid var(--secondary);
}
nav a{
  text-transform: uppercase;
  color: var(--title);
}
nav a span{
  font-weight: bold;
}
nav .sidenav-trigger{
  margin: 0;
}

/* recipe styles */
.recipes{
  margin-top: 20px;
}
.card-panel.recipe{
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  display: grid;
  grid-template-columns: 2fr 6fr 1fr 1fr;
  grid-template-areas: "image details edit delete";
  position: relative;
}

.icon-wrapper {
  display: flex;
  align-items: center;
}

.recipe img{
  grid-area: image;
  max-width: 60px;
}
.recipe-details{
  grid-area: details;
  margin-top: 6px;
}
.recipe-delete{
  grid-area: delete;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.recipe-edit{
  grid-area: edit;
  position: absolute;
  bottom: 0px;
  
}

.recipe-insert{
  grid-area: insert;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.recipe-delete i{
  font-size: 18px;
}

.recipe-edit i{
  font-size: 18px;
}

.recipe-insert i{
  font-size: 18px;
}

.recipe-title{
  font-weight: bold;
}

.recipe-hedaer{
  font-weight: bold;
  color: #FFFFFF;
}

.recipe-ingredients{
  font-size: 0.8em;
}

/* form-styles */
.add-btn{
  background: var(--title) !important;
}
input{
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.side-form button{
  background: var(--title);
  box-shadow: 1px 1px 3px rgba(90,90,90,0.2);
}
form .input-field{
  margin-top: 30px;
}

#toast-container {
  min-width: 10%;
  top: 50%;
  right: 50%;
  transform: translateX(50%) translateY(50%);
}

.hr-title-separator {
  height: 1pt; 
  color: rgb(175, 172, 172);
}

