﻿
/* Base table styling with custom class name */
table.insulation-table {
    width: 100%;
    border-collapse: collapse; /* Keeps grid lines perfectly crisp and single-line */
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Header row styling */
table.insulation-table th {
    background-color: #f2f2f2; /* Light gray header background */
    color: #000000; /* Crisp black text */
    font-weight: bold;
    text-align: left;
    padding: 10px 8px; /* Clean spacing around header text */
    border: 1px solid #e0e0e0; /* Subtle, thin gray borders */
}

/* Regular data row styling */
table.insulation-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #e0e0e0; /* Matches the thin header borders */
    color: #000000;
}

    /* Optional: Strong/Bold elements within the table body */
    table.insulation-table td strong {
        font-weight: bold;
    }

/* Base table styling with custom class name */
.metal_content table {
    width: 100%;
    border-collapse: collapse; /* Keeps grid lines perfectly crisp and single-line */
    font-family: Arial, sans-serif;
    font-size: 14px;
}

    /* Header row styling */
    .metal_content table th {
        background-color: #f2f2f2; /* Light gray header background */
        color: #000000; /* Crisp black text */
        font-weight: bold;
        text-align: left;
        padding: 10px 8px; /* Clean spacing around header text */
        border: 1px solid #e0e0e0; /* Subtle, thin gray borders */
    }

    /* Regular data row styling */
    .metal_content table td {
        padding: 8px;
        text-align: left;
        border: 1px solid #e0e0e0; /* Matches the thin header borders */
        color: #000000;
    }

        /* Optional: Strong/Bold elements within the table body */
        .metal_content table td strong {
            font-weight: bold;
        }


figure {
    text-align: center;
}

figcaption {
    margin-top: 2px !important;
    font-weight: bold;
    color: #555;
}

.metal_content ul {
    list-style: none;
}

    .metal_content ul > li {
        text-indent: 5px;
        margin-bottom: 10px;
        position: relative;
        padding-left: 80px;
    }

        .metal_content ul > li::before {
            content: "o";
            text-indent: 10px;
            position: absolute;
            left: 50px;
        }

.steel_explain ul {
    list-style: none;
}

    .steel_explain ul > li {
        text-indent: 5px;
        margin-bottom: 10px;
        position: relative;
        padding-left: 80px;
    }

        .steel_explain ul > li::before {
            content: "o";
            text-indent: 10px;
            position: absolute;
            left: 50px;
        }
