/* design.css */

/* Grundstile für den Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
	font-size: 16px; /* Schriftgröße */
    margin: 0;
    padding: 20px;
}

/* Header-Stile */
header {
    background-color: #f0f0f0; /* Hintergrundfarbe */
    padding: 10px; /* Innenabstand */
}

a {
    color: #000099;
    font-size: 14px;
    text-decoration: none;
  }
  a:visited {
    color: #000099;
  }
  a:hover {
    text-decoration: underline;
  }

/* Container für Logo und Titel */
.logo-container {
    display: flex;
    align-items: center; /* Vertikale Ausrichtung */
}

/* Logo-Stile */
.logo {
    width: 150px; /* Breite des Logos */
    height: auto; /* Höhe automatisch anpassen */
    margin-right: 10px; /* Abstand zwischen Logo und Titel */
}

/* Titel-Stile */
.titlenebenlogo {
    font-size: 34px; /* Schriftgröße */
    margin: 0; /* Kein Außenabstand */
}

.title {
    font-size: 20px; /* Schriftgröße */
    margin: 0; /* Kein Außenabstand */
}

/* Responsive Design */
@media (max-width: 600px) {
    .logo-container {
        flex-direction: column; /* Elemente untereinander anordnen */
        align-items: flex-start; /* Links ausrichten */
    }

	.titlenebenlogo {
		font-size: 24px; /* Schriftgröße */
		margin: 0; /* Kein Außenabstand */
	}

    .title {
        font-size: 16px; /* Kleinere Schriftgröße auf kleinen Bildschirmen */
    }
}

.containerlehrkraft {
    max-width: 1200px;
    margin: auto;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Tabellenstil */
.containerlehrkraft table {
    width: 100%;
    border-collapse: collapse; /* Entferne doppelte Ränder */
    margin-top: 20px;
}

/* Tabellenüberschriften */
.containerlehrkraft th {
    background-color: #007BFF; /* Blaue Hintergrundfarbe */
    color: white; /* Weiße Schriftfarbe */
    padding: 10px;
    text-align: center; /* Linksbündige Ausrichtung */
}

/* Tabellenzellen */
.containerlehrkraft td {
    padding: 10px;
    border: 1px solid #ddd; /* Graue Rahmenlinie */
    text-align: center; /* Zentrierte Ausrichtung */
}

/* Hover-Effekt für Tabellenzeilen */
.containerlehrkraft tr:hover {
    background-color: #f1f1f1; /* Hellerer Hintergrund bei Hover */
}

h1 {
	font-size: 20px; /* Schriftgröße */
    text-align: center;
    color: #333;
}

h2 {
    color: #000099; /* Blaue Farbe für die Kategorien */
	font-size: 16px; /* Schriftgröße */
    margin: 0; /* Kein Außenabstand */
}

h3 {
	font-size: 16px; /* Schriftgröße */
    text-align: center;
    color: #333;
    margin: 0; /* Kein Außenabstand */
}
h4 {
	font-size: 18px; /* Schriftgröße */
    text-align: center;
    color: #333;
    margin: 0; /* Kein Außenabstand */
}


ul {
    list-style-type: none;  /* Entferne Aufzählungszeichen */
    padding: 0;
}

li {
    margin: 10px 0;
}

input[type="checkbox"] {
    margin-right: 10px; /* Abstand zwischen Checkbox und Namen */
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007BFF; /* Blaue Hintergrundfarbe */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3; /* Dunklere Farbe beim Hover */
}
		
a.buttonlink,
a.buttonlink:visited,
a.buttonlink:hover,
a.buttonlink:active {
    color: #ffffff;
    background-color: #000099; /* Blaue Hintergrundfarbe */
	font-size: 14px;
	text-align: center;
    padding: 5px 8px;
	border-radius: 5px; /* Abgerundete Ecken */
    transition: background-color 0.3s; /* Sanfter Übergang bei Hover */
    border-radius: 6px;
    text-decoration: none;
    font-weight: normal;
    display: inline-block;
}

.buttonlink:hover {
         background-color: #0000FF; /* Dunklere Farbe beim Hover */
	}
