/* colours */
:root{
  --primary: rgb(164, 248, 182);
  --secondary: rgb(103, 255, 136);
  --title: rgb(2, 134, 31);
}
/* :root{
  --primary: #FFE9D2;
  --secondary: #FFE1C4;
  --title: #FF8816;
} */

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

/* recipe styles */
.recipes1{
  margin-top: 0px;
}

/* recipe styles */
.recipes2{
  margin-top: 0px;
}

/* recipe styles */
.recipes3{
  margin-top: 0px;
}
/* rubah tampilan grid listnya disini */
.card-panel.recipe{
  border-radius: 8px;
  padding: 0px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  display: grid;
  grid-template-columns: 0.1fr 6fr 0.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;
}
.recipe-ingredients-result{
  font-size: 0.8em;
}

.recipe-ingredients-result1{
  font-size: 0.7em;
}

/* 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);
}
.label_val {display:block; text-align:right;}
form .input-field{
  margin-top: 30px;
}
* {box-sizing: border-box}

/* Set height of body and the document to 100% */
body, html {
  height: 100%;
  margin: 0;
  font-family: Arial;
}

/* Style tab links */
.tablink {
  background-color: rgb(122, 119, 119);
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 5px;
  font-size: 16px;
  width: 50%;
  height: 50px;
}

.tablink:hover {
  background-color: #777;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: rgb(5, 5, 5);
  display: none;
  padding: 50px 0px;
  /* height: 100%; */
}
/* #Home {background-color: red;}
#News {background-color: green;}
#Contact {background-color: blue;}
#About {background-color: orange;} */