/* Hintergrundfarbe und Abstände */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Karten-Stil */
.card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Titelstil */
.card-title {
    font-size: 1rem; /* Kleinere Schriftgröße für mobile Geräte */
    font-weight: bold;
}

/* Buttons mit Hover-Effekten */
.btn {
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #e9ecef;
    color: #495057;
}

/* Media Queries für iPhones und iPads */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .fa-warehouse, .fa-parking, .fa-traffic-light {
        font-size: 2rem;
    }
}
