/* Basic Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #004f94;
    color: #ffd100;
    font-weight: bold;
}

td {
    background-color: #f9f9f9;
}

/* Adjustments for different screen sizes */
@media screen and (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        font-size:12px;
    }
    

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin-bottom: 10px;
        border-bottom: 2px solid #ddd;
    }

    td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 70% !important;
        text-align: left;
    }

    td:before {
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
    }
      td:nth-of-type(1):before { content: "Model No."; }
    td:nth-of-type(2):before { content: "Bolt dimension (Metric)"; }
    td:nth-of-type(3):before { content: "Bolt dimension (Imperial)"; }
    td:nth-of-type(4):before { content: "Max Pressure (bar)"; }
    td:nth-of-type(5):before { content: "Hydraulic Area (cm²)"; }
    td:nth-of-type(6):before { content: "Max Load (kN)"; }
    td:nth-of-type(7):before { content: "Piston Stroke (mm)"; }
    td:nth-of-type(8):before { content: "D (mm)"; }
          td:nth-of-type(9):before { content: "H (mm)"; }
    td:nth-of-type(10):before { content: "H1 (mm)"; }
    td:nth-of-type(11):before { content: "H2 (mm)"; }
    td:nth-of-type(12):before { content: "D1 (mm)"; }
    td:nth-of-type(13):before { content: "D2 (mm))"; }
    td:nth-of-type(14):before { content: "A (mm)"; }
    td:nth-of-type(15):before { content: "C (mm)"; }
    td:nth-of-type(16):before { content: "Weight (kg)"; }
}

@media screen and (min-width: 769px) {
    /* For larger screens */
    th, td {
        padding: 12px;
        font-size: 14px;
    }
}