body {
    font-family: Lato;
    color: #333;
    padding: 20px;
    line-height: 1.5;
    font-size: 18px;
}

h1, h2, h3 {
    font-family: Poppins;
    color: #133a1a;
}

h1 {
    font-size: 26px;
}

h2, h3 {
    font-size: 20px;
}

p {
    margin-bottom: 1em;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

    ul li {
        margin-bottom: 10px;
    }

.list-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.list-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .list-box ul {
        list-style-type: none;
        padding-left: 0;
    }

    .list-box li {
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 5px;
    }

        .list-box li:nth-child(odd) {
            background-color: #f0f0f0;
        }

        .list-box li:nth-child(even) {
            background-color: #ffffff;
        }

    .list-box a {
        text-decoration: underline;
        color: #007bff;
    }

.hoursofoperations-image {
    display: flex;
    justify-content: center;
}

    .hoursofoperations-image img {
        width: 90%; /* Adjust the width as needed */
        height: auto; /* Maintain aspect ratio */
    }

.highlight {
    background-color: yellow;
}

.code-block {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: auto;
}

.table-container {
    width: 100%;
    overflow-y: auto;
    max-height: 600px; /* Adjust this value as needed */
}

    .table-container table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        border: 1px solid #133a1a;
    }

    .table-container th, td {
        padding: 10px;
        text-align: center;
        border: 1px solid #133a1a;
    }

    .table-container th {
        background-color: #133a1a;
        color: white;
        position: sticky;
        top: 0;
        z-index: 1;
    }

.fuel-surcharge-table {
    width: 100%;
    overflow-y: auto;
    max-height: 600px;
}

    .fuel-surcharge-table table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        border: 1px solid #133a1a;
    }
    .fuel-surcharge-table th, .fuel-surcharge-table td {
        padding: 12px 15px;
        border: 1px solid #133a1a;
    }

    .fuel-surcharge-table th {
        background-color: #133a1a;
        color: white;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .fuel-surcharge-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .fuel-surcharge-table tr:hover {
        background-color: #f1f1f1;
    }

