.main-container {
    display: flex;
    justify-content: space-between; /* Teilt den verfügbaren Platz auf */
    gap: 20px; /* Abstand zwischen den beiden Bereichen */
}

.left-section {
    width: 48%; /* Das Formular (Fahrzeug oder Termin hinzufügen) nimmt 48% der Breite ein */
}

.right-section {
    width: 48%; /* Die Listen der aktuellen Fahrzeuge und Termine nehmen 48% der Breite ein */
}

h4 {
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.form-group {
    margin-bottom: 10px;
}

.vehicles, .appointments {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
