@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:wght@25,100..1000&display=swap');

body {
  margin: 0;
  padding: 0;
  overflow: hidden; /* Verhindert das Scrollen des gesamten Bodys */
  height: 100vh; 
  background-color:#ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-style: normal;
  text-align: left;
  color: #000000;
  }

.container {
    display: flex;
    height: 100vh; /* Volle Bildschirmhöhe */
}

.sidebar {
    width: 400px; /* Breite der linken Spalte */
    background-color: #00AFC4;
    border-right: 1px solid #ccc;
}

.fixed-text {
    position: sticky; /* Hält das Element fixiert */
    top: 20px;        /* Abstand vom oberen Rand */
    padding: 20px;
}

.content {
    flex: 1; /* Nimmt den restlichen Platz ein */
    padding: 80px;
    overflow-y: auto; /* Scrollbar, falls der Inhalt zu lang ist */
}

h1 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 50px;
  color: #000000; /* Semikolon korrigiert */
  font-weight: 200; /* Setzt die Stärke auf 200 */
  font-variation-settings: 'wght' 200;
  text-align: left;
  line-height: 120%;
  margin: 30px 0px 20px 0px;
}

h2 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 36px;
  color: #000000; /* Semikolon korrigiert */
  font-weight: 200; /* Setzt die Stärke auf 200 */
  font-variation-settings: 'wght' 200;
  text-align: left;
  line-height: 120%;
  margin: 50px 0px 20px 0px;
}

	
.bluebox {
    background-color: #3787AF; /* Falls das deine "bluebox"-Farbe ist */
    color: #ffffff;            /* Damit der Text darin weiß ist */
    margin-left: -80px;        /* Kompensiert das Padding von .content */
    margin-right: -80px;       /* Kompensiert das Padding von .content */
    padding: 40px 80px;        /* Innerer Abstand, damit der Text nicht am Rand klebt */
}	
	

.bluebox h2 {
    color: #ffffff;
}

.greenbox {
    background-color: #00AFC4; /* Falls das deine "bluebox"-Farbe ist */
    color: #ffffff;            /* Damit der Text darin weiß ist */
    margin-left: -80px;        /* Kompensiert das Padding von .content */
    margin-right: -80px;       /* Kompensiert das Padding von .content */
    margin-bottom: -80px;
    padding: 40px 80px;        /* Innerer Abstand, damit der Text nicht am Rand klebt */
}	
	

.greenbox h2 {
    color: #ffffff;
}



.submit
{
  background-color:#D83547;
  color:#FFFFFF;
  border-style:none;
  cursor: pointer;
}

input.submit[type=submit]:hover
{
  background-color:#D83547;
  color:#FFFFFF;
  border-style:none;
  cursor: pointer;
}

input[name="button"]   {
	/*background-image:url(/custom/felderer/button.png);*/
	background-color:#57ABC4;
	cursor:pointer;
	width:170px;
	height:30px;
	font-size:16px;
	color:#ffffff;
	border:0px
	}
	
input[name="button"]:hover   {
	background-color:#4F99AD;
	cursor:pointer;

	}
	
button {
	background-color:#57ABC4;
	cursor:pointer;
	width:132px;
	height:25px;
	font-size:16px;
	color:#ffffff;
	border:0px
	}
	
button:hover   {
	background-color:#4F99AD;
	cursor:pointer;
	}
	
	
a {
  text-decoration:underline;
/*  color: #597C00;*/
  color: #3487C9;
}

a:hover {
  text-decoration:underline;
  color: #FF8040;
}

a:active {
  text-decoration:underline;
  color: #FF8040;
}

/* Tabellen-Styling für das Dashboard */
table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse; /* Verhindert doppelte Rahmen */
    margin: 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Dezenter Schatten */
}

/* Überschriften-Zeile der Tabelle (optional) */
table tr:first-child td {
    font-weight: bold;
    background-color: #f8f9fa;
    color: #333;
    border-bottom: 2px solid #00AFC4; /* Akzentfarbe der Sidebar */
}

td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0; /* Hellere Rahmenfarbe statt Schwarz */
    vertical-align: middle;
    color: #515151;
	text-align:center;
}


.resultcell {
  background-color:#F9F9F9;
  padding:0px;
  margin:0px;
  text-align:center;
  border-style:dotted;
  border-top-width:0px;
  border-bottom-width:0px;
  border-left-width:0px;
  border-right-width:1px;
}


.resultcellg {
  background-color:#EBEBEB;
  padding:0px;
  margin:0px;
  text-align:center;
  border-style:dotted;
  border-top-width:0px;
  border-bottom-width:0px;
  border-left-width:0px;
  border-right-width:1px;
}


table tr:hover {
    background-color: #f1f9fb !important;
}

table tr:hover td {
    background-color: #f1f9fb !important;
}


@media (max-width: 1300px) {
	  .moff {display: none !important}
	  .mon {display: block !important}
	  .sidebar  {display: none !important}	  
	  .content {padding: 5px !important;width:95% !important}
	  .content iframe {width:90% !important}	  
	  h1 {font-size: 22px !important;margin-top: 20px  !important} 
	  h2 {font-size: 20px !important} 

    }
	
@media print {
	.sidebar  {display: none !important}	  
	body {color:black !important}
	.content {overflow: visible !important;height: auto !important;display: block !important}
	h1 {font-size: 22px !important;margin-top: 20px  !important; color:#000000 !important} 
    h2 {font-size: 20px !important; color:#000000 !important} 	
    h6 {break-before: page;}
	.greenbox {background-color: #ffffff; color:#000000; padding: 0px 0px 0px 0px;margin-left: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important}
    .bluebox {background-color: #ffffff; color:#000000; padding: 0px 0px 0px 0px;margin-left: 0px !important;margin-right: 0px !important;}
    .whitebox {background-color: #ffffff; color:#000000; padding: 0px 0px 0px 0px}
}	
	
	
}
	