
/* Basic Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #004f94; /* Light blue for header */
    color: #ffd100;
       border-radius: 0;
    font-weight: bold;
}

td {
    background-color: #f9f9f9;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        font-size:12px;
        font-weight:200;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
           font-size:10px;
    }
   
    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;
    }

    /* Label for each cell based on column */
    td:nth-of-type(1):before { content: "Model"; }
    td:nth-of-type(2):before { content: "Power (kVA)"; }
    td:nth-of-type(3):before { content: "Voltage (V)"; }
    td:nth-of-type(4):before { content: "Current (A)"; }
    td:nth-of-type(5):before { content: "Frequency (Hz)"; }
    td:nth-of-type(6):before { content: "Overall Dimensions (mm)"; }
    td:nth-of-type(7):before { content: "Body Material"; }
    td:nth-of-type(8):before { content: "Mass (kg)"; }
    td:nth-of-type(9):before { content: "Max. Workpiece Weight (kg)"; }
    td:nth-of-type(10):before { content: "Max. Workpiece Diameter (mm)"; }
    td:nth-of-type(11):before { content: "Min. Workpiece Diameter (mm)"; }
    td:nth-of-type(12):before { content: "Area Between Supports (mm)"; }
    td:nth-of-type(13):before { content: "Magnet Sensor"; }
    td:nth-of-type(14):before { content: "Turbo Heating"; }
    td:nth-of-type(15):before { content: "Turbo Diameter (mm)"; }
    td:nth-of-type(16):before { content: "Standard Yokes (mm)"; }
    td:nth-of-type(17):before { content: "Optional Yokes (mm)"; }
    td:nth-of-type(18):before { content: "Heater Control Unit"; }
    td:nth-of-type(19):before { content: "Digital Screen"; }
    td:nth-of-type(20):before { content: "Power Level"; }
    td:nth-of-type(21):before { content: "Time Control (min)"; }
    td:nth-of-type(22):before { content: "Temperature Control (��C)"; }
    td:nth-of-type(23):before { content: "Temp. Unit Selection"; }
    td:nth-of-type(24):before { content: "Language Option"; }
    td:nth-of-type(25):before { content: "Audio Warning"; }
    td:nth-of-type(26):before { content: "Automatic Demagnetization"; }
    td:nth-of-type(27):before { content: "Temp. Hold Function"; }
    td:nth-of-type(28):before { content: "Countdown Before Start"; }
}

@media screen and (min-width: 769px) {
    /* For larger screens */
    th, td {
        padding: 12px;
        font-size: 14px;
    }
}
