body {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

img {
   float: none; 
}
/*headers*/

/*navbar style*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #366092;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #b8cce4;
}

.active {
  background-color: #b8cce4;
}
/*drop down*/
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #b8cce4;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/*table style*/
table, th, td {
  border-collapse: collapse;
    border: 2px solid black;
}

th {
    color: white;
    background-color: #366092;
}
td {
    background-color: white;
}
/*collapsible*/
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.collapsibleContent {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

.information {
  float: left; 
}
/*overlay*/
.openBtn {
  background: #f1f1f1;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
}

.openBtn:hover {
  background: #bbb;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-y: scroll;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}

.overlay input[type=text] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: auto;
  background: white;
}

.overlay input[type=text]:hover {
  background: #f1f1f1;
}

.overlay select {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: 100%;
  background: white;
}

.overlay select:hover {
  background: #f1f1f1;
}

.overlay input[type=number] {
  padding: 15px;
  font-size: 17px;
  border: none;
  float: left;
  width: auto;
  background: white;
}

.overlay input[type=number]:hover {
  background: #f1f1f1;
}

.overlay input[type=submit] {
  padding: 15px;
  float: left;
  width: auto;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.overlay input[type=submit]:hover {
  background: #bbb;
}
/*holdings classes*/
.holdingheading {
    font-weight: bold;
}
.improvement {
    padding-left: 50px
}
.notBuilt {
    color: #366092;
}
.spare {
    color:darkgray;
}
/*OOS*/
#holdingsView {
    max-width: 800px;
    margin: auto;
}
/*get unit*/
.unitView {
    max-width: 550px;
    padding: 10px;
    margin: auto;
    display: inline-grid;
}

.upgraded {
    color: goldenrod;
}

.keyAbility {
    color: yellow;
}

textarea {
  width: 99%;
  height:200px;
}

.unitView textarea {
  width: 97%;
  height:65px;
}