
/* 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;
}
/* Table row styling */
tr[onclick] {
    transition: all 0.2s ease;
}

tr[onclick]:hover {
    background-color: #f3f4f6 !important;
}

/* Station item styling */
.station-item {
    transition: all 0.2s ease;
    padding: 16px 12px;
    position: relative;
}
.station-item h3 {
    pointer-events: none;
}

.station-item > div {
    pointer-events: none;
}

.station-item:active {
    background-color: rgba(59, 130, 246, 0.1);
}
/* Station schedule styling */
.station-schedule {
    animation: fadeIn 0.3s ease forwards;
    padding: 12px;
}

.station-schedule h4 {
    margin-bottom: 8px;
}

.grid.grid-cols-3 {
    gap: 8px;
}
@keyframes fadeIn {
from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .station-item {
        padding: 12px 8px;
    }
    
    .station-item h3 {
        font-size: 1rem;
    }
    
    .grid.grid-cols-3 {
        grid-template-columns: 1fr;
    }
}
/* Bottom nav spacing */
main {
    padding-bottom: 70px !important;
}
