/* CSS Document */
/* Formuláre */
fieldset {
    width: fit-content;
    margin: 1.5em 0 1.5em 0;
    padding: 1em;
    border: 1px solid rgb(255,224,0);
    border-radius: 5px;
    background-color: rgb(67,67,67);
    color: white;
}

fieldset.submit {
    float: none;
    width: auto;
    border: 0 none #FFF;
    padding-left: 12em;
}

label {
    float: left;
    margin-right: 1em;
    text-align:left;
    font-size:12px;
    padding-top:0.3em;
}

legend {
    padding: 0.2em 0.5em;
    border: 1px solid rgb(255,224,0);
    color: white;
    font-size: 80%;
    text-align: left;
    background-color: rgb(67,67,67);
}

input {
    margin-bottom: 0.2em;
    padding: 10 10 10 10;
}

input[type="text"] {
    size: 200;
    border-radius: 2px;
    border: 1px solid #000000;
}

input[type="number"] {
    width: 100px;
    border-radius: 2px;
    border: 1px solid #000000;
    font-size: 1.2em;
}

input[type="submit"] {
    border-radius: 2px;
    border: 1px solid #000000;
    background: rgb(255,224,0);
}

input[type="submit"]:hover {
    background-color: rgb(102,204,255);
}

input:out-of-range {
    background-color: rgba(255, 0, 0, 0.25);
}

select {
    margin-bottom: 0.2em;
    padding: 10 0 10 0;
}

/* Kontejnery */
html, body {width: auto!important; overflow-x: hidden!important}

body {
    font-family: Verdana;
    /*display: table;*/
    background-color: black;
}

body.vypis {
    font-family: Verdana;
    /*display: table;*/
    background-color: black;
    min-width: 1050;
}

div.obal {
    padding: 0% 2% 2% 2%;
    overflow-x:hidden!important;
    position: relative;
    width: 1000;
}

.row {
    display: flex;
    padding: 0 5 0 0;
}

.column_left {
    flex: 35%;
    padding: 10px;
}
.column_right {
    flex: 65%;
    padding: 10px;
}

/* Tlacítka */
.button {
    font-family: Verdana;
    border-radius: 5px;
    border: 1px solid #000000;
    background-color: rgb(255,224,0);
    text-decoration: none;
    padding: 10;
}

.button_navi {
    padding: 10;
}

.button_grey {
    border-radius: 5px;
    border: 1px solid #000000;
    background-color: lightgrey;
    text-decoration: none;
    color: black;
    padding: 10;
}

/* Universální trídy */
.margin-left30 {
    display: block;
    margin-left: 30px;
}

.margin-left10 {
    display: block;
    margin-left: 10px;
}

.big_font {
    font-size: 1.5em;
    font-weight: bold;
}

.medium_font {
    font-size: 1.2em;
}

.file {
    display: inline-block;
    padding: 10px 0px 10px 0px;
}

.hidden {
    display: none;
}

/* Textové prvky */
p {
    font-family: Verdana, Arial;
    font-size:12px;
}

p.chyba {
    background: white;
    padding: 10;
    border-radius: 5px;
}

p.prujezd {
    background: white;
    padding: 10;
    border-radius: 5px;
    margin-block-start: -0em;
    line-height: 1.5;
}

hr { 
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border: 1px dashed #e0e0e0;
}

img.zobraz {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    border-radius: 5px;
    border: white 5px solid;
}

/* Filtrování */
.rowfiltr {
    cursor: pointer;
}

.rowfiltr_dnf {
    cursor: pointer;
    text-decoration: line-through;
}

.filterDiv {
    display: none;
}

.show {
    display: flex;
}

/* Tabulka */
table.tracking a:link {
	color: rgb(255,224,0);
	font-weight: bold;
	text-decoration:none!important;
  	box-shadow: none;
}
table.tracking a:visited {
	color: rgb(255,224,0);
	font-weight:bold;
	text-decoration:none!important;
  	box-shadow: none;
}
table.tracking a:active,
table.tracking a:hover {
	color: black;
	text-decoration:underline!important;
}
table.tracking {
	color:white;
	font-size:12px;
	background:black;
	border:#ccc 1px solid;
/*    margin: 0% 1% 0% 1%;
    display: inline-block;*/
    width: 100%;
}
table.tracking th {
  	color:black;
	font-weight: bold;
    min-width: 50;
/*	width: auto!important;
	padding:7px 10px 7px 10px;
	border-top:1px solid #fafafa;
	border-bottom:1px solid #e0e0e0;*/
	border:1px solid rgb(255,224,0);
  	background: rgb(255,224,0);
}
table.tracking th:first-child {
	text-align: left;
	padding-left:5px;
}
table.tracking tr {
	text-align: left;
	padding-left:5px;
  	width: auto!important;
}
table.tracking td:first-child {
	text-align: left;
	padding-left:5px;
	border-left: 0;
}
table.tracking td {
	padding:2px 5px 2px 5px;
/*	border-top: 1px solid #ffffff;*/
	border-bottom:1px dashed #e0e0e0;
	border-left: 1px dashed #e0e0e0;
	background: transparent;
  	width: auto!important;
}
table.tracking tr.even td {
	background: transparent;
}
table.tracking tr:last-child td {
	border-bottom:0;
}  
table.tracking tr:hover td {
	background: rgb(255,224,0);
  	color:black;
}
table.tracking tr:hover a {
	background: rgb(255,224,0);
  	color:black;
}