/* FoodTruckFinder Custom Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    font-size: 1.25rem;
}

/* Map styles */
#map {
    border-bottom: 3px solid #dc3545;
}

/* Card hover effects */
.card {
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Star ratings */
.rating {
    color: #ffc107;
}

/* Footer always at bottom */
footer {
    margin-top: auto;
}
