
    /* H-Lift Industrial Theme Table Styles */
    .matrix-container {
        margin-top: 30px;
        margin-bottom: 30px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        overflow: hidden;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .matrix-header {
        background-color: #003366; /* Navy Blue */
        color: #ffffff;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        border-bottom: 3px solid #e67e23; /* Safety Orange */
    }

    .matrix-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        background-color: #fff;
        min-width: 700px;
    }

    .table-wrapper {
        overflow-x: auto;
    }

    .matrix-table th {
        background-color: #f4f7f6;
        color: #333;
        font-weight: 600;
        text-align: center;
        padding: 15px;
        border-bottom: 2px solid #ddd;
    }

    .matrix-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: #555;
        vertical-align: top;
        text-align: center;
    }
    
    .matrix-table tr:hover {
        background-color: #f9fbfd;
    }

    .product-link {
        display: block;
        padding: 8px 12px;
        margin: 5px auto;
        background-color: #fff;
        border: 1px solid #003366;
        color: #003366;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.2s;
        width: 90%;
        max-width: 220px;
    }

    .product-link:hover {
        background-color: #003366;
        color: #fff;
    }

    .link-subtext {
        display: block;
        font-size: 11px;
        color: #666;
        margin-top: 2px;
        font-weight: normal;
    }

    .icon-placeholder {
        font-size: 24px;
        margin-bottom: 10px;
        display: block;
    }

