.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color, #dee2e6);
        }
        .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.green {
            background-color: #28a745;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .act-question {
            background: #fafcfa;
            border: 1px solid #e8f0e8;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin-bottom: 0.75rem;
            transition: border-color 0.2s;
        }
        .act-question:hover {
            border-color: #b8d4b8;
        }
        .act-question .q-label {
            font-weight: 600;
            margin-bottom: 0.4rem;
            display: block;
        }
        .act-question .q-text {
            font-size: 0.98rem;
            margin-bottom: 0.5rem;
        }
        .act-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .act-options .form-check {
            margin-right: 0.25rem;
        }
        .act-options .form-check-label {
            font-size: 0.88rem;
        }
        .score-badge {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .score-badge.green {
            background: #d4edda;
            color: #155724;
        }
        .score-badge.yellow {
            background: #fff3cd;
            color: #856404;
        }
        .score-badge.red {
            background: #f8d7da;
            color: #721c24;
        }
        .dimension-bar {
            height: 18px;
            border-radius: 9px;
            background: #e9ecef;
            overflow: hidden;
            margin: 0.2rem 0;
        }
        .dimension-bar .fill {
            height: 100%;
            border-radius: 9px;
            background: #28a745;
            transition: width 0.6s ease;
        }
        .dimension-bar .fill.yellow {
            background: #ffc107;
        }
        .dimension-bar .fill.red {
            background: #dc3545;
        }
        .result-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid #eef5ee;
            margin-top: 1.2rem;
        }
        .result-card .total-score {
            font-size: 3.2rem;
            font-weight: 800;
            color: #1a7a3a;
            line-height: 1;
        }
        .result-card .total-label {
            font-size: 1rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .result-card .control-level {
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 0.25rem;
        }
        .insight-box {
            background: #f8fdf8;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin-top: 1rem;
            border-left: 4px solid #28a745;
        }
        .insight-box.warning {
            border-left-color: #ffc107;
            background: #fffdf5;
        }
        .insight-box.danger {
            border-left-color: #dc3545;
            background: #fdf8f8;
        }
        .disclaimer-box {
            background: #f0f4f8;
            border-radius: 8px;
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #495057;
            border: 1px solid #dce4ec;
            margin-top: 1.2rem;
        }
        .recommendation-list {
            padding-left: 1.2rem;
        }
        .recommendation-list li {
            margin-bottom: 0.4rem;
        }
        .faq-highlight {
            background: #f8faf8;
            border-radius: 6px;
            padding: 0.3rem 0.8rem;
            font-weight: 500;
        }
        .authority-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #e8f0e8;
            padding: 0.25rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #1a5a2a;
        }
        .control-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.3rem 0;
        }
        .control-indicator .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .control-indicator .dot.green { background: #28a745; }
        .control-indicator .dot.yellow { background: #ffc107; }
        .control-indicator .dot.red { background: #dc3545; }
        .control-indicator .dot.gray { background: #adb5bd; }
        @media (max-width: 576px) {
            .result-card .total-score { font-size: 2.4rem; }
            .act-options .form-check-label { font-size: 0.82rem; }
            .act-question { padding: 0.8rem; }
        }