/* GLOBAL RESET */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-blue: #00428d;
    --accent-blue: #556ee6;
    --bg-color: #f5f7fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --alert-red: #f46a6a;
    --alert-green: #34c38f;
    --bg-track: #e3f2fd;
    --icon-track: #1976d2;
    --bg-pnr: #e8f5e9;
    --icon-pnr: #388e3c;
    --bg-pass: #fff3e0;
    --icon-pass: #f57c00;
    --bg-food: #f3e5f5;
    --icon-food: #7b1fa2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    transition: background-color 0.3s;
}

.hidden {
    display: none !important;
}

/* HEADER */
.app-header {
    background-color: var(--white);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 800;
}

.logo i {
    margin-right: 10px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-menu {
    position: absolute;
    right: 0;
    top: 48px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    min-width: 160px;
}

.profile-menu div {
    padding: 8px 10px;
    cursor: pointer;
}

.profile-menu div:hover {
    background: #f5f7fa;
}

#login-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

/* HOME VIEW */
.greeting-section {
    margin-bottom: 40px;
}

.greeting-section h2 {
    font-size: 32px;
}

/* Make all home options appear in a single horizontal row */
.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}

.service-card {
    min-width: 260px;
    flex: 0 0 260px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-8px);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.icon-track {
    background-color: var(--bg-track);
    color: var(--icon-track);
}

.icon-pnr {
    background-color: var(--bg-pnr);
    color: var(--icon-pnr);
}

.icon-pass {
    background-color: var(--bg-pass);
    color: var(--icon-pass);
}

.icon-food {
    background-color: var(--bg-food);
    color: var(--icon-food);
}

.label {
    font-size: 20px;
    font-weight: 600;
}

.promo-section {
    margin-top: 50px;
}

.promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SEARCH VIEW */
#search-view {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.page-title {
    color: white;
    margin-bottom: 40px;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.search-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.search-card {
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.search-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-blue);
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.search-card label {
    font-size: 16px;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
    display: block;
}

.search-card input {
    width: 100%;
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 18px;
    background-color: #f9f9f9;
}

.search-btn {
    width: 100%;
    padding: 20px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

.swap-icon {
    text-align: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin: -10px 0 10px 0;
    cursor: pointer;
}

.back-link {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-block;
}

.suggestion-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover {
    background-color: #f0f4f8;
    color: var(--primary-blue);
}

/* STATUS VIEW (TIMELINE) */
#status-view {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.status-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.train-title h2 {
    font-size: 18px;
    margin: 0;
}

.train-title p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

.back-link-small {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Small pill-shaped back button used in status headers for PNR/Pass */
.back-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 8px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Alt header: used for PNR and Pass screens to avoid blue background */
.status-header.alt {
    background-color: transparent;
    color: var(--text-dark);
    box-shadow: none;
}

.status-header.alt .train-title h2 {
    color: var(--text-dark);
}

.status-header.alt .back-pill {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    color: var(--primary-blue);
}

.route-header-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #eee;
    color: #555;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.station-row {
    display: flex;
    position: relative;
    padding: 20px 10px;
    border-bottom: 1px solid #eee;
}

.station-row.current-station {
    background-color: #e3f2fd;
    border-left: 5px solid var(--primary-blue);
}

.time-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
}

.time-col.left {
    text-align: left;
    padding-left: 10px;
}

.time-col.right {
    text-align: right;
    padding-right: 10px;
}

.timeline-col {
    width: 40px;
    position: relative;
    display: flex;
    justify-content: center;
}

.timeline-col::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ddd;
    z-index: 1;
}

.dot {
    width: 16px;
    height: 16px;
    background-color: #ccc;
    border-radius: 50%;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 0 0 1px #ccc;
    margin-top: 5px;
}

.train-icon-marker {
    width: 30px;
    height: 30px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.info-col {
    flex: 3;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.station-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.station-meta {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.delay-badge {
    background-color: var(--alert-red);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.status-bar {
    color: var(--primary-blue);
    font-size: 12px;
    padding-top: 5px;
    font-weight: bold;
}

.status-tag {
    font-size: 12px;
    margin-left: 8px;
    font-weight: bold;
}

.status-tag.ontime {
    color: #2ecc71;
}

.status-tag.delayed {
    color: #e74c3c;
}

.scheduled-time {
    color: #888;
    font-size: 12px;
    text-decoration: line-through;
    display: block;
}

.actual-time {
    color: var(--alert-green);
    font-weight: bold;
}

.delayed-time {
    color: var(--alert-red);
    font-weight: bold;
}

/* TRAIN LIST RESULTS */
#train-list-view {
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
}

.train-list-container {
    padding: 20px;
}

.train-list-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    cursor: pointer;
    transition: transform 0.2s;
}

.train-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.t-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.t-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.t-stn {
    text-align: left;
}

.t-stn.right {
    text-align: right;
}

.t-code {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-blue);
}

.t-time {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: block;
}

.run-status {
    font-size: 13px;
    color: #555;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.run-status span.delay-text {
    color: var(--alert-red);
    font-weight: bold;
    margin-left: 5px;
}

/* PANTRY & CART STYLES */
#pantry-menu-view {
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: #f5f7fa;
    padding-bottom: 90px;
}

.pantry-container {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.food-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding-bottom: 12px;
}

.food-img-box {
    height: 100px;
    background: #eef2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #888;
}

.food-img-box i {
    font-size: 34px;
}

/* Payment modal styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e9eef8;
    cursor: pointer;
    background: #fff;
}

.payment-option.selected {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 66, 141, 0.08);
}

.payment-option .pm-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.payment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.payment-total {
    font-weight: 800;
    font-size: 16px;
}

.payment-confirm {
    padding: 10px 18px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.payment-confirm[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Auth modal tweaks */
#login-modal .modal-content {
    max-width: 420px;
}

#login-modal input {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
}

/* Pantry title visibility overrides */
#pantry-auth-view .page-title,
#pantry-confirm-view .page-title {
    color: var(--text-dark);
}

#pantry-menu-view .train-title h2 {
    color: var(--text-dark);
}

/* Improve visibility and spacing for return/back buttons inside Pantry views */
#pantry-confirm-view .back-link {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    display: inline-block;
    font-weight: 800;
}

#pantry-menu-view .back-pill,
#pantry-auth-view .back-pill {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    color: var(--primary-blue);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 66, 141, 0.06);
    font-weight: 800;
}

#pantry-menu-view .back-pill:hover,
#pantry-confirm-view .back-link:hover {
    transform: translateY(-2px);
}

/* Give extra bottom padding to avoid overlap with the floating cart bar */
#pantry-menu-view {
    padding-bottom: 140px;
}

/* Make return buttons more tappable on small screens and prevent overlap with floating cart */
@media (max-width: 640px) {
    #pantry-menu-view .back-pill {
        display: block;
        width: calc(100% - 40px);
        margin: 0 auto;
        font-size: 16px;
        padding: 12px 18px;
    }
}

/* Small header return button (rounded rectangular) */
.back-pill.small {
    padding: 6px 12px;
    border-radius: 8px;
}


/* Orders list */
.order-card {
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-meta {
    font-size: 13px;
    color: #666;
}

.order-items {
    font-size: 13px;
    color: #333;
    margin-top: 6px;
}

.order-actions button {
    margin-left: 8px;
}

.small-muted {
    font-size: 12px;
    color: #888;
}

/* Orders pagination */
.orders-pagination {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.orders-pagination button {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #e6e6e6;
    background: white;
    cursor: pointer;
    font-weight: 700;
}

.orders-pagination button.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.orders-pagination button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.food-info {
    padding: 10px;
}

.food-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    display: block;
    height: 36px;
    overflow: hidden;
}

.food-price {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: block;
    font-weight: bold;
}

/* ZOMATO BUTTONS */
.add-btn-wrapper {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-add-init {
    background: white;
    color: green;
    border: 1px solid #ddd;
    padding: 5px 25px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-counter {
    display: flex;
    align-items: center;
    background: #60b246;
    color: white;
    border-radius: 6px;
    overflow: hidden;
    height: 32px;
}

.btn-counter button {
    background: none;
    border: none;
    color: white;
    width: 30px;
    height: 100%;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.btn-counter span {
    width: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

/* FLOATING CART BAR */
.cart-floating-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    background-color: #60b246;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1500;
    animation: slideUp 0.3s ease-out;
}

.cart-info {
    font-weight: bold;
    font-size: 15px;
}

.cart-btn-txt {
    font-weight: bold;
    font-size: 14px;
}

/* CART & RECEIPT */
.cart-list-scroll {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-bill-row {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 18px;
    border-top: 2px dashed #ddd;
    padding-top: 15px;
}

.receipt-summary-box {
    text-align: left;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    margin: 15px 0;
    border: 1px solid #eee;
}

.receipt-row {
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

.receipt-item-name {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.receipt-item-desc {
    font-size: 11px;
    color: #777;
    font-style: italic;
    margin-top: 2px;
}

.receipt-total-row {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
    border-top: 2px solid #ddd;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

.receipt-icon {
    font-size: 50px;
    color: #2ecc71;
    margin-bottom: 15px;
}

.receipt-note {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Interaction debug button */
#interaction-check {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 9999;
    background: #ff4d4f;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blocker-highlight {
    outline: 4px solid rgba(255, 77, 79, 0.9);
}

/* restore control */
#restore-interaction {
    position: fixed;
    left: 12px;
    bottom: 52px;
    z-index: 9999;
    background: #00897b;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

/* TICKET CONFIRMATION */
.ticket-header {
    margin-bottom: 15px;
    border-bottom: 2px dashed #eee;
    padding-bottom: 15px;
}

.ticket-details {
    text-align: left;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.ticket-row:last-child {
    margin-bottom: 0;
}

/* MODALS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
}

.crowd-item {
    margin-bottom: 12px;
}

.crowd-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.progress-bar {
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    border-radius: 4px;
}

.fill.red {
    background-color: #ff4d4f;
}

.fill.orange {
    background-color: #ffa940;
}

.fill.yellow {
    background-color: #ffec3d;
}

.fill.green {
    background-color: #73d13d;
}

.crowd-desc {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
    font-style: italic;
}

.platform-alert-box {
    text-align: center;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.plat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
}

.plat-status {
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.station-clickable {
    color: var(--primary-blue);
    cursor: pointer;
    text-decoration: underline;
}

.station-clickable:hover {
    color: var(--accent-blue);
}

/* Prediction feedback */
.btn-option {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 8px 14px;
    border-radius: 8px;
    margin-right: 8px;
    cursor: pointer;
    font-weight: 700;
}

.btn-option:hover {
    background: #f7f9fc;
}

#pred-feedback input[type=range] {
    width: 100%;
}

#pred-scroll {
    overflow: auto;
    max-height: 140px;
    padding-right: 6px;
}

#pred-footer {
    background: transparent;
    padding-top: 6px;
}

#pred-thanks {
    font-size: 14px;
}