/**
*
*
*
* @since 18.07.2023
* @author Heiko Werner <heiko@edition-software.de>
*
* © 2023 edition-software GmbH
*
*//* 
    Created on : 18.07.2023, 16:33:46
    Author     : Heiko Werner <heiko@edition-software.de>
*/
html{
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 16px;
}

#mainscreen {
  text-align: center;
}
#mainscreen > nav, #tabellescreen > nav {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

#mainscreen > nav > a {
  display: inline-block;
}
h3 {
  font-size: 3rem;
} 

#mainscreen > nav > #showTabelle{
  float:left;
  text-align:left;
}

#mainscreen > nav > #version{
  float:right;
  text-align:right;
}

/* der fotoscreen */

#fotoscreen {
  margin: auto;
  width: 90vw;
  height: 95vh;
  padding-left:4rem;
}
#marke_txt {
  font-size: 8rem;
}
div.row2 {
  font-size: 5rem;
}
#serie_txt, #model_txt_out {
  display: inline-block;
}
a#closebtn {
  text-decoration: none;
  color:#010101;
  display: block;
  padding-top:25rem;
}
a#closebtn:visited {
  color:#010101;
}
#fotoscreen > img {
  position: absolute;
  right: 1rem;
}


/* der mainscreen/formular */
select {
  width:calc(100% - 5rem);
  height: 2rem;
  margin:1rem;
}

div.row {
  width: 100%;
  display:flex;
  justify-content: space-around;
}
div.row > select, div.row > input {
  width:50%;
  height: 2rem;
  margin:1rem;
}
div.row > select {
  margin-left: 2.5rem;
}
div.row > input {
  margin-right: 2.5rem;
}


a.btn {
  line-height: 3rem;
  font-size: 1.5rem;
  background: #83b43f;
  border: 1px solid #83b43f;
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  margin-top:2rem;
  display: inline-block;
}

/* der tabellenscreen */
table {
  width:100%;
}

th {
  background-color: #006ab3;
  border: 0;
  color: #fff;
  padding:0.5rem;
  font-size:140%;
}

td {
  padding:0.5rem;
}

tbody tr:nth-child(odd) {
  background-color: #ccc;
}

