/* Custom CSS for the bus rally map system */
body {
    font-family: Arial, sans-serif;
}

/* Map container used by Leaflet */
#map {
    width: 100%;
    height: 70vh;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

/* Sidebar for forms and lists on admin route editor */
.sidebar {
    max-width: 400px;
    padding: 1rem;
    border-left: 1px solid #ddd;
    background: #f7f7f7;
}

.sidebar h3 {
    margin-top: 0;
}

/* Avatar images for user locations */
.avatar-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

/* Route selector page */
.route-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    transition: box-shadow .2s ease;
}
.route-card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}