        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .header {
            background: white;
            padding: 20px;
            text-align: center;
        }
        .header img {
            width: 350px;
        }
        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
        }
        .day-section {
            background: #fff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .route-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: left;
        }
        .route {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 30%;
            padding: 10px;
            text-align: center;
        }
        .route img {
            width: 250px;
            height: auto;
            margin-bottom: 10px;
            border-radius: 5px;
        }
        .route-info {
	    display: flex;
	    flex-direction: column;
	    flex-grow: 1;
        }
	.route-links {
	    margin-top: auto;
	}
        .route a {
            display: inline-block;
            margin: 5px;
            padding: 8px 12px;
            background: red;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }
        .Metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
        }
        @media (max-width: 768px) {
            .route {
                width: 100%;
            }
        }

