
/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #e0f2fe, #ffffff);
}
main {
    flex: 1;
}

/* Station item animation */
.station-item {
    transition: all 0.2s ease;
}

.station-item:hover {
    transform: translateX(4px);
}
/* Station schedule animation */
.station-schedule {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .station-item h3 {
        font-size: 1rem;
    }
}

/* Bottom nav spacing */
main {
    padding-bottom: 70px !important;
}
