
    /* basic table look */
    .price-table {
        width: 100%;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
    }
    .price-table th,
    .price-table td {
        padding: 8px 12px;
        border: 1px solid #ddd;
        text-align: center;
        vertical-align: middle;
    }
    .price-table th { background: #f7f7f7; }

    /* vehicle icon */
    .taxi-icon {
        width: 80px;
        height: auto;
    }

    /* old vs new */
    .old-price  { text-decoration: line-through; color:#888; margin-right:4px; }
    .new-price  { color:#40c800; font-weight:700; }

    /* responsive “card” view for ≤ 575 px */
    @media (max-width:575px) {
        .price-table, .price-table thead, .price-table tbody, .price-table tr, .price-table th, .price-table td {
            display:block;
            width:100%;
        }
        .price-table thead { display:none; }          /* hide header row */
        .price-table tr    { margin:0 0 18px 0; }     /* space between cards */
        .price-table td    { text-align:left; border:none; border-bottom:1px solid #eee; }
        .price-table td:before {                      /* fake labels */
            content: attr(data-label) ": ";
            font-weight:600;
            display:inline-block;
            width:48%;
        }
        .price-table td:last-child { border-bottom: none; }
    }
