
* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

/* Style the header */
.header {
    background-color: green;
    padding: 10px;
    text-align: center;
}

/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
    height: 600px; 
    overflow: auto;
}

/* Left column */
.column.left {
    width: 50%;
    left: 0px;
}

/* Right column */
.column.right {
    width: 50%;
    right: 0px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Style the footer */
.footer {
    background-color: green;
    padding:1px;
    margin: 0;
    text-align: center;
}

#foodItems div {
	box-shadow: 4px 4px 2px #888888;
	padding: 5px;
	margin: 15px;
	border: 2px solid grey;
	width: 300px;
}

#Tables div {
	box-shadow: 2px 2px 2px #66bb6a;
	padding: 5px;
	margin: 15px;
	border: 2px solid green;
	width: 300px;
}

#input1{
	width: 50%;
    margin-bottom: 5px;
	text-align: center;
	height: 30px;
	margin-left: 25%;
}

#input2{
	width: 50%;
	margin-bottom: 5px;
	text-align: center;
	height: 30px;
	margin-left: 30%;
}

.search-border {
    border: 2px solid gray;
    margin: 5px;
}

.search-border:focus { 
    outline: none;
    border-color: green;
    box-shadow: 0 0 10px #9ccc65;
}

/* The Modal (background) */
#myModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border: 2px solid #004d40;
}

#container1{
	height: 50px;
	background-color: green;
}

#billHeader{
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 150px;
}


/* Add Animation */
.modal-content, #billHeader {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

#container2{
	background-color: white;
}
#container3{
	height: 30px;
	background-color: green;
}
#billFooter{
	font-size: 16px;
	padding-top: 9px;
	text-align: center;
	color : white;
	width: 100%;
}

th, td {
    padding: 10px;
}

td{
	padding-left: 45px;
}

/* The Close Button */
#close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

#close:hover,
#close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}