        .results-table td, .results-table th {
            vertical-align: middle;
            text-align: center;
        }
        
        /* Sticky Header for columns */
        .header-labels th {
            position: sticky;
            top: 0;
            background-color: #fff;
            color: #363636;
            z-index: 10;
            border-bottom: 2px solid #dbdbdb;
            box-shadow: 0 2px 2px -1px rgba(0,0,0,0.1);
        }

        /* Model Header Row - Centered and Light */
        .model-header th {
            background-color: #f5f5f5; /* Light gray */
            color: #363636 !important; /* Dark text */
            text-align: center !important; /* Centered */
            font-weight: 700;
            font-size: 1.1em;
            letter-spacing: 1px;
            padding: 12px 0;
            border-top: 2px solid #dbdbdb;
            border-bottom: 2px solid #dbdbdb;
        }

        /* Unit text small */
        .unit {
            font-size: 0.75em;
            font-weight: normal;
            color: #7a7a7a;
        }

        /* Highlighting for your rows */
        .ours-row {
            background-color: #eef6fc !important; /* Very light blue */
        }
        .ours-row-best {
            background-color: #e8f5e9 !important; /* Very light green */
            border-left: 4px solid #48c774;
        }

        /* Mobile Font Sizing */
        @media screen and (max-width: 768px) {
            .results-table {
                font-size: 0.7rem;
            }
            .model-header th {
                font-size: 0.9rem;
            }
        }