body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Dunkler Hintergrund */
    color: #e0e0e0; /* Helle Schriftfarbe */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

header {
    background-color: #1f1f1f; /* Dunkler Header */
    color: #e0e0e0; /* Helle Schriftfarbe im Header */
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

header img {
    margin-right: 20px;
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}

main {
    padding: 20px;
    text-align: center;
    width: 80%; /* Breite des Inhalts */
    flex-grow: 1;
}

main h2 {
    text-align: center;
    color: #e0e0e0;
}

form {
    text-align: center;
    margin-bottom: 20px;
}

input[type="text"], input[type="number"], input[type="file"] {
    padding: 8px;
    width: 80%;
    margin-bottom: 10px;
    background-color: #333; /* Dunkler Input-Hintergrund */
    color: #e0e0e0; /* Helle Schriftfarbe im Input */
    border: 1px solid #555; /* Dunkler Rand */
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

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

.fahndungen {
    display: flex;
    justify-content: center; /* Zentriert die Fahndungen */
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen den Fahndungen */
}

.fahndung {
    background-color: #1f1f1f; /* Dunkler Hintergrund für Fahndungen */
    border: 1px solid #333;
    padding: 10px;
    width: 28%; /* Breite jeder Fahndungsbox */
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-bottom: 20px;
}

.fahndung img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.fahndung h2 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #e0e0e0;
}

.fahndung p {
    font-size: 1em;
    color: #b0b0b0;
}

footer {
    background-color: #1f1f1f;
    color: #e0e0e0;
    text-align: center;
    padding: 10px;
    width: 100%;
}

/* Rest of your styles.css */

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #218838;
}
