/* colours */
:root{
  --primary: #314152;
  --secondary: #cedc00;
  --title: #cedc00;
}

/* layout styles */
nav{
  background: var(--primary);
  border-bottom: 10px solid var(--secondary);
}

.nav-wrapper {
  display: flex;
  align-items: center; /* Vertically center items */
  justify-content: space-between; /* Space items evenly along the container */
}
nav a{
  text-transform: uppercase;
  color: var(--title);
}
nav a span{
  font-weight: bold;
}
nav .sidenav-trigger{
  margin: 0;
 color: #cedc00;
}
.logo-image {
  max-width: 100px;
  height: auto;
}
/* recipe styles */
.recipes{
  margin-top: 20px;
}
div{
  color: black;
  font-size: large
}
h6{
  color: black;
  font-weight: bold;
}
h5{
  color: black;
}
p{
  color: black;
}
.sidenav side-menu{
  color: black;
}
.card-panel.recipe{
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  display: grid;
  grid-template-columns: 3fr 7fr;
  grid-template-areas: "image details delete";
  position: relative;
}

.card-panel.supplier{
  border-radius: 12px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  padding: 10px;
}

.linkSpanner{
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;
  z-index: 1;

  /* edit: fixes overlap error in IE7/8, 
     make sure you have an empty gif 
  background-image: url('empty.gif');*/
}
.recipe img{
  grid-area: image;
  max-width: 80px;
}
.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;
  position: absolute;
  color: black;
  padding-left: 20px;
}
.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(206,220,0,1);
  color: #cedc00;
}
form .input-field{
  margin-top: 30px;
}
li{
  font-size: medium;
  color: black;
}
li:not(last-child){
  padding-bottom: 15px;
}

