/* style.css */
@font-face {
  font-family: 'Didact'; /* Gib dem Font einen Namen */
  src: url('../fonts/DidactGothic-Regular.ttf'); /* Passe den Pfad zur Schriftdatei entsprechend an */
  /* Weitere Schriftdateiformate hinzufügen, falls verfügbar */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Comfortaa'; /* Gib dem Font einen Namen */
  src: url('../fonts/ComfortaaVariableFontwght.ttf'); /* Passe den Pfad zur Schriftdatei entsprechend an */
  /* Weitere Schriftdateiformate hinzufügen, falls verfügbar */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Quicksand'; /* Gib dem Font einen Namen */
  src: url('../fonts/Quicksand-VariableFont_wght.ttf'); /* Passe den Pfad zur Schriftdatei entsprechend an */
  /* Weitere Schriftdateiformate hinzufügen, falls verfügbar */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MsMadi'; /* Gib dem Font einen Namen */
  src: url('../fonts/MsMadi-Regular.ttf'); /* Passe den Pfad zur Schriftdatei entsprechend an */
  /* Weitere Schriftdateiformate hinzufügen, falls verfügbar */
  font-weight: normal;
  font-style: normal;
}
/* Hintergrundfarbe des Body */
body {
  background-color: #FCFDFE;
  margin-top: 200px;
  margin-bottom: 350px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
/* Label */
label {
  font-family:  Comfortaa, sans-serif;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}


/* Überschrift */
h1 {
  color: #333;
  text-align: left;
  font-family: Comfortaa, sans-serif;
}

/* h2 */
h2 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  font-family: Comfortaa, sans-serif;
}

/* h3 */
h3 {
  color: #333;
  font-size: 15px;
  font-weight: normal;
  font-family: Comfortaa, sans-serif;
}

/* h4 */
h4 {
  color: #999;
  font-size: 14px;
  font-weight: bold;
  font-family: Comfortaa, sans-serif;
}

/* p */
p {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  font-family: Comfortaa, sans-serif;
}

/* Tabellenstil */
table {
  border-collapse: collapse;
  width: 80%;
   box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

th, td {
  border: 0px solid #ccc;
  font-size: 12px;
  padding: 6px;
  color: #0D0D0D;
  font-family: Comfortaa, sans-serif;
}

th {
  background-color: #f2f2f2;
  text-align: left
}

td {
  background-color: #f2f2f2;
  text-align: left
}
 tr:hover td {
            background-color: #eaeaea;
}
/* Buttonstil    #f2f2f2   */ 
        button {
            background-color: #1D6F42;
            color: white;
            border: none;
            padding: 5px 10px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 12px;
            cursor: pointer;
            border-radius: 5px;
			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
			font-family: Comfortaa, sans-serif;
        }

        button:hover {
            background-color: #45a049;
        }
		
		/* KalenderButton   */ 
        .auftragbutton {
            background-color: #0088FF;
            color: white;
            border: none;
            padding: 5px 10px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
			font-family: Comfortaa, sans-serif;
        }

        .auftragbutton:hover {
            background-color: #45a049;
        }
		
		
				/* KalenderTerminButton   */ 
        .terminbutton {
            background-color: #ffa500;
            color: white;
            border: none;
            padding: 5px 10px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
			font-family: Comfortaa, sans-serif;
        }

        .terminbutton:hover {
            background-color: #45a049;
        }

        .button {
            background-color: #1D6F42;
            color: white;
            border: none;
            padding: 5px 10px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
			font-family: Comfortaa, sans-serif;
        }

        .button:hover {
            background-color: #45a049;
        }



input[type="text"], input[type="number"], input[type="email"],  input[type="password"],  textarea {
  font-family: "Comfortaa", Comfortaa, sans-serif;
  font-size: 14px;
  color: #333;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}



input[type="date"] {
  font-family: "Comfortaa", Comfortaa, sans-serif;
  font-size: 14px;
  color: #333;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 200px; /* Anpassen der Breite nach Bedarf */
}
select {
  font-family: "Comfortaa", Comfortaa, sans-serif;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 200px;
  /* Weitere gewünschte CSS-Eigenschaften hinzufügen */
}

/* Optional: Ändern des Aussehens des ausgewählten Elements */
select option:checked {
  background-color: #f2f2f2;
  font-weight: bold;
  /* Weitere gewünschte CSS-Eigenschaften hinzufügen */
}


/* Positionierung des Headers */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}
/* Positionierung des Footers */
footer {
 position: fixed;
  bottom: 0;
    left: 0;
    right: 0;

    
}


/* Restlicher Inhalt */
.container {
    display: flex;
}
.table-containerkontaktefrmLinks {
    flex: 1;
    margin-left: 20px;
	text-align: left;
}
.table-containerkontaktefrmRechts {
    flex: 1;
    margin-right: 20px;
	text-align: right;
}

table-container {
    flex: 1;
    margin-right: 20px;
	
}
.message {
    background-color: #e8e8e8;
    color: #333;
    padding: 10px;
    margin-bottom: 20px;
}


#inhalt {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 3px; /* Hier kannst du den Radius der abgerundeten Ecken anpassen */
}

label[for="betreff"],
input#betreff {
  width: 70%;
}

label[for="empfaenger"],
input#empfaenger {
  width: 70%;
}


/*styles für unternavbars */

ul.navbarb {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #d3d3d3;
  font-family: Comfortaa, sans-serif;
}

ul.navbarb li {
  float: left;
}

ul.navbarb li a {
  display: block;
  color: #0D0D0D;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.navbarb li a:hover {
  background-color: #373f43;
}

ul.navbarb li.active {
  background-color: #4CAF50;
}

ul.navbarb li.active a {
  color: white;
}

/* Stil für die Unterkategorien */
ul.navbarb li:hover > .submenub {
  display: block;
}

ul.submenub {
  list-style-type: none;
  padding: 0;
  display: none;
  position: absolute;
  background-color: #DCD6d0;
  min-width: 200px;
}

ul.submenub li {
  float: none;
  display: block;
  padding-left: 0px; /* optionaler Innenabstand, um Platz für eigene Marker zu schaffen */
  padding-right: 0px; /* optionaler Innenabstand, um Platz für eigene Marker zu schaffen */
}


.submenub li a {
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  display: block;
  text-align: left;
}

.submenub li a:hover {
  background-color: #ddd;
}



/* Anpassung der Breite des Select2-Elements */
#anhang {
  width: 500px; /* Hier kannst du die gewünschte Breite einstellen */
}

/* Allgemeine Font-Einstellungen für das gesamte Select2-Element */
.select2-container, .select2-container--default, .select2-selection--single {
  font-family: Comfortaa, sans-serif; /* Hier kannst du die gewünschte Schriftart einstellen */
   width: 500px; /* Hier kannst du die gewünschte Breite einstellen */
}


/* Anpassung der Dropdown-Pfeile */
.select2-container .select2-selection__arrow {
  /* Hintergrundfarbe der Pfeile */
  background-color: #dddddd;
  /* Äußerer Abstand der Pfeile */
  margin-top: 0px;
}

/* Anpassung der Pfeile (dreieckige Form) */
.select2-container .select2-selection__arrow:before, 
.select2-container .select2-selection__arrow:after {
  border-color: #333333 transparent transparent transparent;
}

/* Äußerer Abstand der Dropdown-Pfeile */
.select2-container .select2-selection__arrow {
  margin-right: 0px;
}

/* Anpassung der Farbe der Pfeile (dreieckige Form) bei Hover */
.select2-container--default .select2-selection--single:hover .select2-selection__arrow:before, 
.select2-container--default .select2-selection--single:hover .select2-selection__arrow:after {
  border-color: #666666 transparent transparent transparent;
}




/* Anpassung der Breite des Select2-Elements */
.select2-container {
    width: 500px; /* Hier kannst du die gewünschte Breite des Select2-Elements einstellen */
}

/* Allgemeine Font-Einstellungen für das gesamte Select2-Element */
.select2-container, .select2-container--default, .select2-selection--single {
    font-family: Comfortaa, sans-serif; /* Hier kannst du die gewünschte Schriftart einstellen */
	width: 500px; /* Hier kannst du die gewünschte Breite des Select2-Elements einstellen */
}

/* Anpassung der Dropdown-Pfeile */
.select2-container .select2-selection__arrow {
    /* Hintergrundfarbe der Pfeile */
    background-color: #dddddd;
    /* Äußerer Abstand der Pfeile */
    margin-top: 0px;
}

/* Anpassung der Pfeile (dreieckige Form) */
.select2-container .select2-selection__arrow:before, 
.select2-container .select2-selection__arrow:after {
    border-color: #333333 transparent transparent transparent;
}

/* Äußerer Abstand der Dropdown-Pfeile */
.select2-container .select2-selection__arrow {
    margin-right: 0px;
}

/* Anpassung der Farbe der Pfeile (dreieckige Form) bei Hover */
.select2-container--default .select2-selection--single:hover .select2-selection__arrow:before, 
.select2-container--default .select2-selection--single:hover .select2-selection__arrow:after {
    border-color: #666666 transparent transparent transparent;
}

/* Anpassungen für das Dropdown-Menü */
.select2-container .select2-dropdown {
    width: auto !important; /* Setze die Breite auf automatische Anpassung */
    min-width: 100% !important; /* Minimale Breite auf 100% des Dropdown-Feldes */
}

/* Anpassungen für das ausgewählte Element */
.select2-container .select2-selection {
    width: 100% !important; /* Breite auf 100% des Dropdown-Feldes */
}

/* Anpassungen für das Suchfeld */
.select2-container .select2-search__field {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    width: 100% !important; /* Breite auf 100% des Dropdown-Feldes */
}

/* Anpassungen für den Pfeil */
.select2-container .select2-selection__arrow {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border: none;
}







#tabs {
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); /* Hinzugefügte Schatten-Eigenschaft */
	}
	/* Stil für alle Submit-Buttons */
input[type="submit"] {
    background-color: #9BC01C;
            color: white;
            border: none;
            padding: 5px 10px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
			box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
			font-family: Comfortaa, sans-serif;
}

/* Hinzufügen eines Effekts, wenn der Mauszeiger über den Button bewegt wird */
input[type="submit"]:hover {
    background-color: #fFD64D; /* Ändern Sie die Hintergrundfarbe im Hover-Zustand */
    color: #fff; /* Ändern Sie die Textfarbe im Hover-Zustand */
}
	