/* --- Global Styles --- */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

h2 {
    color: #007bff; /* Blue for primary headings */
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

/* --- Form Styles --- */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; /* Ensures padding doesn't expand the element */
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* --- Message and Error Styles --- */
.error {
    color: white;
    background-color: #dc3545; /* Red for errors */
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.message {
    color: white;
    background-color: #ffc107; /* Yellow for warnings/messages */
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

/* --- Navigation & Links --- */
p a {
    color: #007bff;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.2s;
}

p a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* --- Contact Page Specific --- */
.team-list {
    list-style: none;
    padding: 0;
}

.team-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px dashed #e9ecef;
}

.team-info {
    margin-left: 15px;
}

.photo-placeholder {
    width: 50px;
    height: 50px;
    background-color: #ced4da;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: #6c757d;
}

/* --- Home Page Specific --- */
.welcome-message {
    font-size: 1.5em;
    font-weight: 600;
    color: #28a745; /* Green for success */
    text-align: center;
    margin-top: 20px;
}

/* Fügen Sie diese Regeln ZU static/style.css hinzu */

/* Anpassung des Body-Padding, um Platz für die Navigationsleiste zu schaffen */
body {
    /* ... bestehende Stile ... */
    padding-top: 70px; /* Fügt Platz für die fixe Navigationsleiste hinzu */
}

/* --- Navigationsleisten-Stile --- */
.navbar {
    background-color: #343a40; /* Dunkler Hintergrund */
    color: white;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Fixiert die Leiste oben */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Stellt sicher, dass die Leiste über anderen Elementen liegt */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
    color: #007bff; /* Blau für das Logo/Branding */
}

.navbar-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    margin-left: 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-links a:hover {
    background-color: #007bff;
    color: white;
}

.navbar-links a.active {
    background-color: #0056b3; /* Dunkleres Blau für die aktive Seite */
    font-weight: bold;
}