.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;
        }
        .effect-meter {
            height: 24px;
            border-radius: 12px;
            background: linear-gradient(to right, #e8f5e9, #fff9c4, #ffccbc, #ef9a9a);
            position: relative;
            margin: 1rem 0 1.5rem 0;
            border: 1px solid #ddd;
        }
        .effect-meter .marker {
            position: absolute;
            top: -4px;
            width: 4px;
            height: 32px;
            background: #d32f2f;
            border-radius: 2px;
            transition: left 0.4s ease;
        }
        .effect-meter .labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: #666;
            margin-top: 4px;
        }
        .effect-meter .label-small {
            position: absolute;
            top: -18px;
            font-size: 0.7rem;
            color: #555;
        }
        .effect-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .effect-badge.very-small {
            background: #e8f5e9;
            color: #2e7d32;
        }
        .effect-badge.small {
            background: #c8e6c9;
            color: #1b5e20;
        }
        .effect-badge.medium {
            background: #fff9c4;
            color: #f57f17;
        }
        .effect-badge.large {
            background: #ffccbc;
            color: #bf360c;
        }
        .effect-badge.very-large {
            background: #ef9a9a;
            color: #b71c1c;
        }
        .mode-selector .btn-group {
            width: 100%;
        }
        .mode-selector .btn {
            flex: 1;
        }
        .mode-panel {
            display: none;
        }
        .mode-panel.active {
            display: block;
        }
        .interpretation-box {
            background: #f5f9ff;
            border-radius: 8px;
            padding: 1.2rem;
            border: 1px solid #d6e4ff;
            margin-top: 1rem;
        }
        .ci-range {
            font-family: 'Courier New', monospace;
            background: #f0f0f0;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
        }
        .effect-size-visual {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .effect-size-visual .bar-container {
            flex: 1;
            min-width: 120px;
            height: 20px;
            background: #eee;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        .effect-size-visual .bar-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 0.6s ease;
            background: linear-gradient(90deg, #4caf50, #ffeb3b, #f44336);
        }
        .effect-size-visual .bar-label {
            font-size: 0.9rem;
            font-weight: 500;
            min-width: 60px;
        }
        .effect-size-visual .bar-value {
            font-weight: 600;
            font-size: 1.1rem;
            min-width: 70px;
        }
        .badge-es {
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            background: #e3f2fd;
            color: #0d47a1;
        }
        .formula-block {
            background: #f8f9fa;
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            font-family: 'Cambria Math', 'Latin Modern Math', serif;
            font-size: 1.1rem;
            margin: 0.8rem 0;
            text-align: center;
        }
        @media (max-width: 768px) {
            .effect-size-visual {
                flex-direction: column;
                align-items: stretch;
            }
            .effect-size-visual .bar-label {
                min-width: auto;
            }
            .effect-size-visual .bar-value {
                min-width: auto;
            }
        }