body{
  	background-image: url("/files/background.GIF");
  	background-color: lightblue;
}

/*****************************************/
/* TABLE                                 */
/*****************************************/

table{
	border: 1px solid black;
	border-collapse: collapse;
}

tr{
	border: 1px solid black;
}

tr:nth-child(even) {
	background: #00ffff;
}

tr:nth-child(odd) {
	background: #00ccff;
}

th{
	border: 1px solid black;
	background: #1abc9c;
}



td{
	border: 1px solid black;
}
  
.header {
	padding: 1px;
	text-align: center;
	/*background: #1abc9c;*/
	/*color: white;*/
	font-size: 45px;
	border-bottom: 3px solid black ;
}

.main {
	border-bottom: 3px solid black;
}

.private_password {
	border: 1px solid black;
}


/*****************************************/
/* TABS                                  */
/*****************************************/
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #00ffff;
}

/* Style the buttons inside the tab */
.tab button {
  /*background-color: inherit;*/
  background-color: inherit;
  float: left;
  border: 1 px;
  outline: 1 px;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #00ccff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


/*****************************/
/** Images                   */
/*****************************/

.receipe_img{
    height: auto;
    Text-align: justify;;
    position: static;
    float left;
    display: inline-block;
    width: 100%;
    min-width: 400px;
}

.pdf_holder{
    width: 1200px;
    height: 900px;
}

.split {
}

/* Control the left side */
.left {
  float: left;
    padding-right: 15px;
  position: static;
    min-width: 1%;
}

/* Control the right side */
.right {
    float: left;
  position: static;
    max-width: 80%;
}

/* If you want the content centered horizontally and vertically */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

.flex-container {
    display: flex;
    background-color: green;
    height: 100%;
}

.flex-container > div {
    background-color: #f1f1f1;
    margin: 10px;
    padding: 10px;
    height: 100%;
}

