
/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@400;500;600;700&display=swap');
body {
    font-family: 'Roboto', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
main {
    flex: 1;
}
/* Table row styling */
tr[onclick] {
    transition: all 0.2s ease;
    font-weight: 400;
}

tr[onclick]:hover {
    background-color: #f1f5f9 !important;
}
/* Station item styling */
.station-item {
    transition: all 0.2s ease;
    padding: 16px 12px;
    position: relative;
    font-weight: 500;
}
.station-item h3 {
    pointer-events: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.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: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}
.station-schedule h4 {
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1e293b;
}
.grid.grid-cols-3 {
    gap: 12px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .station-item {
        padding: 14px 10px;
    }
    
    .station-item h3 {
        font-size: 1.05rem;
    }
    
    .grid.grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    body {
        font-size: 0.95rem;
    }
}
/* Bottom nav spacing */
main {
    padding-bottom: 70px !important;
}
