﻿@media (max-width: 600px) {
    table {
        border-collapse: separate;
        border-spacing: 0;
        width: 85%;
    }
        /* Make only the first and last th have rounded top corners */
        table thead th:first-child {
            border-top-left-radius: 10px;
            padding-left: 25px;
            margin-right: 20px;
        }

        table thead th:last-child {
            border-top-right-radius: 10px;
        }

        table thead tr th:nth-child(2) {
            padding-left: 0;
            padding-right: 40px;
        }

    thead tr {
        background-color: #ffffff;
    }

        thead tr th {
            background-color: #4D4D4D;
            font-weight: 100;
            padding: 16px 8px;
        }

    table tbody td {
        border-bottom: 1px solid #D3D3D3;
    }

        table tbody td:first-child {
            border-left: 1px solid #D3D3D3;
            padding-left: 25px;
            margin-right: 20px;
        }

        table tbody td:last-child {
            border-right: 1px solid #D3D3D3;
        }

    th, td {
        text-align: left;
        height: 30px;
        padding-left: 8px;
        font-size: 14px;
    }

    th {
        line-height: 10px;
    }

    tbody tr td:nth-child(2) {
        padding-left: 0;
        padding-right: 30px;
    }

    .logbook_header {
        margin-left: 0px;
        font-weight: bold;
    }
}
