/* CSS for simuloLab demo pages */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
.header {
  background-color: lightblue; // #f1f1f1;
  padding: 2px;
  text-align: center;
  font-size: 16px;
}
li {
line-height: 1.6;
font-size: 16px;
}
p {
line-height: 1.6;
font-size: 16px;
}
	p.def { // definition
	  text-align: center;
	  font-size: 20px;
	  font-style: italic;
	  font-weight: bold;
	  color: blue;
	}
	
/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  height: 860px; /* this should be slightly bigger than height of the canvas to remove the vertical scrollbar  */
}

/* Left and right column */
.column.side {
  width: 20%;
}

/* Middle column */
.column.middle {
  width: 80%;
}
/* Middle column */
.column.left {
  width: 50%;
}
.column.right {
  width: 50%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 2px;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}


/************ begin of style for myForm *******************/
/* The popup form - hidden by default */
.form-popup {
  display: none;
  position:absolute;
  left:45%;
  top:35%;
  margin-left:-202px;
  line-height: 1.6;
  border: 5px ridge #b3b3b3; //border: 5px solid #f1f1f1;
  padding: 10px;
  background-color: lightgray;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}  /* end of style for myForm */


.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 40px;
  //background-color:#2196F3;
  //padding: 10px;
}
.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: left;
  //vertical-align: middle;
  margin: auto;
  //padding: 20px 0;
  font-size: 18px;
}
