.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value.power-high {
            color: #27ae60;
        }
        .result-value.power-mid {
            color: #f39c12;
        }
        .result-value.power-low {
            color: #e74c3c;
        }
        .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;
        }
        .stats-canvas {
            width: 100%;
            height: auto;
            background-color: #fafbfc;
            border: 1px solid #dee2e6;
            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.power-curve {
            background-color: #2c3e50;
            width: 24px;
            height: 3px;
            border-radius: 0;
        }
        .legend-color.power-target {
            background-color: #e74c3c;
            width: 24px;
            height: 2px;
            border-radius: 0;
            border-top: 2px dashed #e74c3c;
            background: transparent;
        }
        .legend-color.sample-marker {
            background-color: #2980b9;
        }
        .power-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .power-badge.high {
            background-color: #d4edda;
            color: #155724;
        }
        .power-badge.mid {
            background-color: #fff3cd;
            color: #856404;
        }
        .power-badge.low {
            background-color: #f8d7da;
            color: #721c24;
        }
        .power-badge.very-low {
            background-color: #f5c6cb;
            color: #721c24;
        }
        .slider-value {
            font-weight: 600;
            min-width: 48px;
            display: inline-block;
        }
        .param-slider {
            width: 100%;
        }
        .glossary-term {
            font-weight: 600;
            color: var(--primary-color);
        }
        .power-interp {
            font-size: 0.95rem;
            padding: 0.75rem 1rem;
            background-color: #f8f9fa;
            border-radius: 6px;
            border-left: 3px solid #6c757d;
            margin: 0.5rem 0;
        }
        @media (max-width: 768px) {
            .legend {
                gap: 0.75rem;
                font-size: 0.8rem;
            }
            }