@media screen {
  #printSection {
      display: none;
  }
}

@media print {
  body * {
    visibility:hidden;
  }
  #printSection, #printSection * {
    visibility:visible;
  }
  #printSection {
    position:absolute;
    left:0;
    top:0;
  }
}


* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #bebebe;
}


.app-main .app-main__inner {
  	padding: 0;
  	background-color: #f8f9fa;
  }


.login {
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
 }
.login h2 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 0 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login h4 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 10px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="email"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
  	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}

.container {
   padding-left: 0;
   padding-right: 0;
}

.navbar {
	margin-bottom: 0px;
}

.navbar-inverse .navbar-brand {
	font-size: 2em;
	color: #fff;
}

.navbar-inverse .navbar-brand:hover {
	color: #ccc;
}

.navbar-brand .logo {
	color: #5cb85c;
}

.main-container {
	margin-top: 20px;
}

.registration-form {
	max-width: 450px;
	margin: 0 auto;
}

.small-container-500 {
	max-width: 500px;
  	margin: 0 auto;
}

.small-container-400 {
	max-width: 400px;
}

.small-container-330 {
  max-width: 330px;
  margin: 0 auto;
}


.small-container .small-container-heading,
.small-container .checkbox {
  margin-bottom: 10px;
}
.small-container .checkbox {
  font-weight: normal;
}
.small-container .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.small-container .form-control:focus {
  z-index: 2;
}

footer {
    position:absolute;
    bottom: 0;

}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

.txtedit{
 display: none;
 width: 99%;
 height: 30px;
}

.txtedits{
 display: none;
 width: 99%;
 height: 30px;
}

div.ui-dialog.DTE {
  z-index: 110 !important;
}
  
div.ui-widget-overlay {
  z-index: 109 !important;
}
   
.app-page-title {
	padding: 15px;
	margin: 10px;
	text-align: center;
}

.dropdown-menu {
    /*min-width: 200px;
    min-height: 100px;
    max-width: 400px; /* Maximale Breite */
    /*max-height: 200px; /* Maximale Höhe */
    /*background-color: #f8f9fa; /* Hintergrundfarbe */
    
}

select {
    min-width: 200px; /* Mindestbreite */
    max-width: 300px; /* Maximale Breite */
    padding: 10px; /* Innenabstand */
    background-color: #f8f9fa; /* Hintergrundfarbe */
}

select.form-select {
    width: 100%;
    max-width: 100%;
  }

.csit-app_outer {
	z-index: 9;
	padding-left: 280px;
	width:100%;
}

.csit-box {
	background-color: lightblue;
	border: #2868c7;
	min-height: 50px;
	font-size:2rem;
	padding: 5px;
}

#conditionalButton {
	display: none; /* Standardmäßig ausblenden */
}

.green-background {
    background-color: #d4edda !important; /* Hellgrün */
}

.blue-background {
    background-color: #cae1ff !important; /* Hellblau */
}

.yellow-background {
    background-color: #fff3cd !important; /* Hellgelb */
}

.red-background {
    background-color: #f8d7da !important; /* Hellrot */
}

tr.green-background.odd, tr.green-background.even {
    background-color: #d4edda !important;
}

tr.yellow-background.odd, tr.yellow-background.even {
    background-color: #fff3cd !important;
}

tr.red-background.odd, tr.red-background.even {
    background-color: #f8d7da !important;
}
.fixed-input {
    height: 2.5rem;       /* Feste Höhe des Eingabefelds */
    font-size: 1.5rem;    /* Größere Schrift */
    line-height: 1.2;     /* Angepasster Zeilenabstand */
    padding-top: 0.2rem;  /* Optional: Anpassung des Paddings */
    padding-bottom: 0.2rem;
  }

/* Minimierte Abstände zwischen Containern */
.section-container {
    margin-bottom: 2px !important;
}

/* Kleinere Innenabstände für Container */
.section-container .p-3 {
    padding: 0.5rem !important;
}

.section-container .p-2 {
    padding: 0.25rem 0.5rem !important;
}

/* Kompaktere Zusammenfassungen */
.summary-container {
    padding-top: 0.25rem;
}

/* Reduziere vertikalen Abstand in den Formularen */
.section-container .mb-3 {
    margin-bottom: 0.5rem !important;
}

.section-container .mb-4 {
    margin-bottom: 0.75rem !important;
}

/* Kompakteres Layout auf mobilen Geräten */
@media (max-width: 576px) {
    .section-container {
        margin-bottom: 0.3rem !important;
    }
    
    .section-container .p-3 {
        padding: 0.3rem !important;
    }
}

.summary-content {
    font-size: 24px !important;
    line-height: 1.3;
}

/* Schriftgröße in den Zusammenfassungen auf 24px erhöhen */


/* Auch für mobile Geräte konsistente 24px Schriftgröße */
@media (max-width: 576px) {
    #standortSummary .fs-3,
    #sorteSummary .fs-3 {
        font-size: 24px !important;
    }
}

/* Überschriften in den Sektionen ausblenden */
#standortSection .d-flex.justify-content-between.align-items-center h6.text-muted,
#sorteSection .d-flex.justify-content-between.align-items-center h6.text-muted {
    display: none;
}

#standortSummary .summary-content,
#sorteSummary .summary-content {
    font-size: 24px !important;
    line-height: 1.3;
}