body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    padding: 20px;
}

h2 {
    color: #333;
}

#einsatzbefehl {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#einsatzfahrzeuge {
    display: flex;
    flex-wrap: wrap; /* Ermöglicht das Umfließen der Elemente */
    gap: 10px;
    justify-content: space-around; /* Sorgt für gleichmäßigen Abstand */
}

button {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 6px 10px; /* Anpassung für weniger Padding */
    font-size: 14px; /* Kleinere Schriftgröße */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2c2c2c;
}

button:active {
    background-color: #2c2c2c;
}

button.fahrzeugButton {
    width: calc(50% - 12px); /* Berechnet die Breite, um zwei Buttons pro Zeile zu ermöglichen */
    text-align: center;
}

.ausgewaehlt {
    background-color: #28a745 !important;
}

#neuerEinsatz {
    font-weight: bold;
    margin-bottom: 20px;
}

#einsatzHistorie p {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    button.fahrzeugButton {
        width: 100%; /* Passt die Button-Breite auf mobilen Geräten an */
    }
}
#toggleFahrzeuge {
    font-weight: bold;
    margin-bottom: 10px;
    /* Weitere Stile nach Bedarf */
}

