       body {
        }

        .travel-card {
            background: #2c2c2c;
            color: white;
            border-radius: 12px;
            padding: 20px;
            max-width: 320px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .route {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .arrow {
            color: #888;
            margin: 0 4px;
        }

        .details {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-top: 12px;
        }

        .time-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: #ff6b35;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .time {
            font-size: 16px;
            font-weight: 500;
        }

        .label {
            font-size: 14px;
            color: #999;
            margin-bottom: 2px;
        }

        .normal-label {
            color: #ccc;
        }

        .point-label {
            color: #999;
        }
   