/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 07.07.2026, 17:04:41
    Author     : jochen.bromberger
*/


html,body{
    margin:					0;
    height:					100%;
    font-family:		Arial;
		font-size:			16px;
}

#top{
    overflow:				auto;
    padding:				10px;
}

#map{
}

table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ddd;
}

th,td{
    border:					1px solid #ccc;
    padding:				20px;
}

tr:hover{
    background:			#eef;
    cursor:					pointer;
}

.btnred {
	background-color:			red;
}

.btngreen {
	background-color:			#4CAF50;
}

.container {
	display:				flex;
	width:					100vw;
	height:					100vh;
}

/* Standard: Portrait */
.container {
	flex-direction:	column;
}

.box {
  flex:						1;
}

textarea,
input,
select {
    font-size: 16px;
}

/* Landscape */
@media (orientation: landscape) {
    .container {
      flex-direction: row;
    }
}