.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .coord-input {
            margin-bottom: 0.5rem;
        }
        .geometry-canvas {
            width: 100%;
            height: auto;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-top: 1.5rem;
            display: block;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1rem;
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 0.5rem 0;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .status-badge {
            font-size: 1.1rem;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            display: inline-block;
            font-weight: 600;
        }
        .status-badge.pass {
            background-color: #d4edda;
            color: #155724;
        }
        .status-badge.fail {
            background-color: #f8d7da;
            color: #721c24;
        }
        .status-badge.warn {
            background-color: #fff3cd;
            color: #856404;
        }
        .variant-input-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }
        .variant-input-group label {
            min-width: 60px;
            font-weight: 500;
        }
        .variant-input-group input {
            width: 100px;
        }
        .variant-input-group .ratio-input {
            width: 80px;
        }
        .variant-input-group .count-input {
            width: 120px;
        }
        .add-variant-btn {
            margin-top: 0.5rem;
        }
        .variant-row {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
        }
        .variant-row .badge-var {
            min-width: 70px;
            font-weight: 600;
        }.variant-row {
    flex-wrap: nowrap !important;
    overflow-x: auto;
}
.variant-row .badge-var { flex-shrink: 0; }
.variant-row .remove-variant-btn { flex-shrink: 0; }
        .srm-result-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            margin: 1rem 0;
        }
        .srm-stat {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .srm-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .interpretation-box {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem 1.5rem;
            border-left: 4px solid var(--primary-color);
            margin: 1rem 0;
        }
        .bar-chart-container {
            width: 100%;
            max-width: 500px;
            margin: 1.5rem auto;
        }
        .bar-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.4rem;
        }
        .bar-item .bar-label {
            min-width: 70px;
            font-weight: 500;
        }
        .bar-item .bar-track {
            flex: 1;
            height: 24px;
            background-color: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
        }
        .bar-item .bar-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 0.6s ease;
        }
        .bar-item .bar-value {
            min-width: 70px;
            text-align: right;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .expected-line {
            position: absolute;
            top: 0;
            height: 100%;
            width: 2px;
            background-color: #dc3545;
            z-index: 2;
        }
        .expected-line::after {
            content: 'expected';
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.6rem;
            color: #dc3545;
            white-space: nowrap;
        }
        .action-card {
            background-color: #f0f7fa;
            border-radius: 8px;
            padding: 1.2rem;
            margin: 0.8rem 0;
        }
        .action-card h6 {
            color: var(--primary-color);
        }
        .threshold-slider {
            width: 100%;
            max-width: 300px;
        }
        .chip-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .chip {
            background-color: #e9ecef;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        .faq-highlight {
            background-color: #f8f9fa;
            padding: 0.1rem 0.4rem;
            border-radius: 3px;
            font-family: monospace;
        }