/*
	Style sheet for flight log. 

*/ 

#flight-log ul {
  list-style-type: none; /* Hides bullet points from todo list */
}
#flight-log input.edit {
  display: none; /* Hides input box*/
}
#flight-log .editing label {
  display: none; /* Hides label text when .editing*/
}    
#flight-log .editing input.edit {
  display: inline; /* Shows input text box when .editing*/
} 
/* 
table{
   overflow-y:scroll;
   height:600px;
   display:block;
} 
 */
div .pdp-table {
    display: table;
     padding: 5px;
} 
div .pdp-tableRow {
    display: table-row;
}
div .pdp-tableCell {
    display: table-cell;
//    border: #737373 solid 1px;
	border-right: #737373 solid 1px;
    padding: 5px;
}

#flightedit {
  display: grid;                            /* 1 */
  grid-template-columns:  repeat(2, 80px) repeat(2, 170px) 80px repeat(2, 90px);   /* 2 */
  grid-auto-rows: 30px;                     /* 3 */
  grid-gap: 5px;                           /* 4 */
  width: 516px;
}
.pdp-tall {
  grid-row: 2 / 5;                          /* 5 */
  grid-column: 6 / 8;                       /* 5 */
}

.pdp-wide {
  grid-row: 1 / 2;                          /* 6 */
  grid-column: 6 / 8;                       /* 6 */
}	
 .pdp-block {
  background-color: gray;
}
.pdp-time {
	width: 80px;
	text-align:center;
}
.pdp-narrow {
	width: 25px;
	text-align:center;
	padding: 5px;
}
.pdp-name {
	width: 150px;
	text-align:center;
	padding: 5px;
}

.pdp-right {
	text-align:right;
	padding: 5px;
}      
.pdp-center {
	text-align:center;
	padding: 5px;
}
.pdp-note {
	text-align:center;
	padding: 5px;
	overflow: hidden;
}  
.hidden {
	display: none;
} 
body {
	background-color: #eee;
}

.flightContainer {
  display: grid;                            /* 1 */
  grid-template-columns:  repeat(2, 70px) repeat(2, 170px)  60px 120px 60px repeat(2, 90px) 200px;   /* 2 */
  grid-auto-rows: 30px;                     /* 3 */
  grid-gap: 5px;                           /* 4 */
  border: #737373 solid 1px;
}

.flightContainer img {
	float: left;
	margin: 10px;
}

.flightContainer ul {
    list-style-type: none;
    margin-bottom: 0;
}

.flightContainer button {
    float: right;
    margin: 10px;
}

#flightedit label {
	width: 100px;
	margin-right: 10px;
	text-align: right;
	line-height: 25px;
}

#flightedit label, #flightedit input {
	display: block;
	margin-bottom: 10px;
	float: left;
}

#flightedit label[for="title"], #flightedit label[for="releaseDate"] {
	clear: both;
}

#flightedit button {
	display: block;
	margin: 5px 20px 10px 10px;
	float: right;
	clear: both;
}

#flightedit div {
	width: 550px;
}

#flightedit div:after {
	content: "";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
	font-size: 0;
	line-height: 0;
}      
.flight_table{
	width=99%;
	text-align=center;
	padding=2;
	border-spacing=2; 
	background-color:#000666;	
}
.flight_row{
	width=100%;
	white-space: nowrap;
	background-color:#66CCFF ;	
}
.data_row{
	width=100%;
	white-space: nowrap;
	background-color:#ffffff ;	
}
.flight_cell1{
	background-color=#66CCFF;
	text-align=center;
	font-size: 18px;
	font-weight: bold;
	color: #000000	
}
.flight_cell2{
	background-color=#999999;
	text-align=center;
	font-size: 18px; 
	font-weight: bold; 
	color: #000000; 
}
#flight_table{
	width: 99%; 
	margin: auto auto;
}
.container {
    width:100%;
    margin:2 auto;
}
.float-container {
	border: 3px solid #fff;
	padding: 10px;
}
eflights{
	width: 90%; 
	margin: auto auto;
	background-color: #444444;
}
/* 
.Heading{
	background-color: #999999;
	align-content: center;
	width 100%;
	display: table-row;
}
 */
