/* styles */
/* called by your view template */

* {
  box-sizing: border-box;
}

body {
  font-family: helvetica, arial, sans-serif;
  font-size: 14px;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */

}

h1 {
  font-style: italic;
  color: #373fff;
}

.bold {
  font-weight: bold;
}

p {
  max-width: 600px;
}

.form1 {
  margin-bottom: 25px;
  padding: 15px;
  background-color: cyan;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  border-radius: 3px;
}

input {
  display: inline;
  /*margin-bottom: 10px;
  background-color: #001d57; 
  color:#ebcb63;
  width: 100%;
  font-family: lcdnova;
  font-size: 14px;

  */
  padding: 5px;
  border: 1px solid;
  border-radius: 3px;
  /*font-weight: bold;*/
}

a:visited {
    color:blue; 
}

button {
  padding: 2px;
  font-size: 14px;
  border-radius: 3px;
  background-color: #909aad;
  border: 1px solid grey;
/*  box-shadow: 2px 2px teal;*/
  cursor: pointer;
  margin: 2px;
}

button#btnCalc {
  padding: 5px;
  font-size: 14px;
  border-radius: 3px;
  background-color: #909aad;
  border: 1px solid grey;
  /*box-shadow: 2px 2px teal;*/
  cursor: pointer;
  margin: 2px;
  width: 35px;
}


button:hover {
  background-color: #606e87;
}

button#btnCalc:active {
  background-color: #606e87;
  box-shadow: none;
}

li {
  margin-bottom: 5px;
}

footer {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid lightgrey;
}

#tableContent {
}

.trContentHead{
  font-weight: bold;
}

#tableEditForm {
  width:100%;
  max-width: 1000px;
}

#tableEditForm td {
  width:50%;
  padding: 3px 5px;
}
#tableEditForm tr {
  background-color: #B4DAB8;
}


#tableContent td {
  padding: 3px 10px;
}

#tableContent tr:nth-child(odd) {
  background-color: #B4DAB8;
}

#tableContent tr:nth-child(even) {
  background-color: #B4DAF2;
}

.tblOnBC {
  background-color: #001d57;

}

.frleft, .frright {
  color: #1be014; 
  position: absolute; 
  border-bottom: solid 5px;
  border-top: solid 5px; 
  width: 10px; 
  height: 35px;
  touch-action: none;
}

.frleft {
  left: 100px; 
  border-left: solid 5px; 
}

.frright {
  left: 200px; 
  border-right: solid 5px; 
}

.frleft:hover, .frright:hover{
  cursor:pointer;
}

#divForm {
  position: fixed;
  top: 5px;
  left: 50%;
  height: 90%;
  width: 80%;
  transform: translateX(-50%);
  padding: 5px 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  border: 2px solid grey;
  text-align: center;
  overflow: auto;
}

.hidden {
  display: none !important;
}
