/* AppFood css defines styles */
/* TRBL */

/* form to add / edit / delete items */
.fform {
    display: none;
    position: fixed;
    top: 100px;
    left: 250px;
    height: 460px;
    width: 350px;
    color: black;
    background: #FFF000;
    border: 2px solid #000000;
}
.ffrow:after {
    display: table;
  content: "";
  clear: both;
}
.ffcol1 {
  float: left;
  width: 30%;
  margin-top: 6px;
}
.ffcol2 {
  float: left;
  width: 70%;
  margin-top: 6px;
}
.fflabel {
  padding: 12px 10px 10px 10px;
  display: inline-block;
  color:black;
}
.ffinput {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size: 100%;
}
.fftext {
    width: 100%;
    height: 75px;
    padding: 10px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 100%;
    resize: none;
}
.ffbutton {
  background-color: #4CAF50;
  border-radius: 4px;
  color: white;
  padding: 16px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  float:right;
}

/* table for displaying items */
.ft-wrapper {
    position: relative;
}
.ft-scroller {
    margin-left: 251px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 5px;
    width: 500px;
}
.fTable {
    border: none;
    border-right: solid 1px #DDEFEF;
    border-collapse: separate;
    border-spacing: 0;
    font: normal 13px Arial, sans-serif;
}
.fTable thead th {
    background-color: #EEE;
    border: none;
    color: #336B6B;
    padding: 10px;
    text-align: left;
    text-shadow: 1px 1px 1px #fff;
    white-space: nowrap;
}
.fTable tbody td {
    border-bottom: solid 1px #EEE;
    color: #FFFFFF;
    padding: 10px;
    /*text-shadow: 1px 1px 1px #fff;*/
    white-space: nowrap;
}
.fTable .ft-sticky-col {
    border-left: solid 1px #EEE;
    border-right: solid 1px #EEE;
    left: 0;
    position: absolute;
    top: auto;
    text-decoration: inherit;
    width: 250px;
}
.fTable .ft-loc-col {
    text-align: center;
    text-decoration: inherit;
    width: 50px;
}
.fTable .ft-date-col {
    border-left: solid 1px #EEE;
    width: 60px;
}
.fTable .ft-com-col {
    border-left: solid 1px #EEE;
    width: 200px;
}
.ft-scat {
    font-size:1.25em;
    margin: 1px 1px 1px 0px;
}


