/* colours */
:root{
  --primary: #c4f1ff;
  --secondary: #c4f1ff;
  --title: #16c9ff;
}

/* 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;
}

.weathercontent {
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2px;
  grid-row-gap: 2px;    
  font-family: verdana;
  font-size: 20px; 
}


.left { 
  grid-area: 1 / 1 / 2 / 2;   
  text-align: center;
}

.middle { 
  grid-area: 1 / 2 / 2 / 3;   
  text-align: center;
}

.right { 
  grid-area: 1 / 3 / 2 / 4;  
  text-align: right;
  font-weight: bold;   
}

.heading{
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);  
  font-family: verdana;
  font-size: 20px;
  font-weight: bold;   
}

.heatIndexStyle{
  font-size: 0.7em;   
}


.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;
  grid-template-areas: "image details delete";
  position: relative;
}
.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-delete i{
  font-size: 18px;
}
.recipe-title{
  font-weight: bold;
}
.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;
}