.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid #ddd;
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .disability-entry {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
            background: #fafcff;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            border: 1px solid #e9edf4;
        }
        .disability-entry .disability-entry .form-control.rating-input {
            max-width: 100px;
        }
        .disability-entry .form-check-input {
            margin-right: 0.25rem;
        }
        .disability-entry .form-check-label {
            font-size: 0.8rem;
            font-weight: 500;
            color: #2c3e50;
        }
        .rating-badge {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.85rem;
            background: #e9ecef;
        }
        .rating-badge.rating-10 {
            background: #d4edda;
            color: #155724;
        }
        .rating-badge.rating-20 {
            background: #c3e6cb;
            color: #155724;
        }
        .rating-badge.rating-30 {
            background: #b8daff;
            color: #004085;
        }
        .rating-badge.rating-40 {
            background: #a3c4f3;
            color: #004085;
        }
        .rating-badge.rating-50 {
            background: #f5c6cb;
            color: #721c24;
        }
        .rating-badge.rating-60 {
            background: #f1aeb5;
            color: #721c24;
        }
        .rating-badge.rating-70 {
            background: #f4a6a6;
            color: #721c24;
        }
        .rating-badge.rating-80 {
            background: #e8898f;
            color: #721c24;
        }
        .rating-badge.rating-90 {
            background: #dc7a7a;
            color: #721c24;
        }
        .rating-badge.rating-100 {
            background: #c0392b;
            color: #fff;
        }
        .result-card {
            background: #f8faff;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid #d4e0f0;
            margin-top: 1rem;
        }
        .result-card .big-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a4d7a;
            line-height: 1.2;
        }
        .result-card .big-number .percent-symbol {
            font-size: 2rem;
            color: #4a6a8a;
        }
        .result-card .rating-detail {
            font-size: 1rem;
            color: #2c3e50;
        }
        .result-card .rating-detail ul {
            padding-left: 1.2rem;
        }
        .gauge-container {
            margin: 1.5rem 0;
            position: relative;
            height: 24px;
            background: #e9ecef;
            border-radius: 12px;
            overflow: hidden;
            width: 100%;
        }
        .gauge-fill {
            height: 100%;
            border-radius: 12px;
            background: linear-gradient(90deg, #2e7d32, #43a047, #f9a825, #e53935);
            width: 0%;
            transition: width 0.6s ease;
        }
        .gauge-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: #6c757d;
            margin-top: 2px;
        }
        .bilateral-badge {
            background: #e8f0fe;
            border-radius: 16px;
            padding: 0.25rem 0.75rem;
            font-size: 0.85rem;
            color: #1a4d7a;
            border: 1px solid #b8d4eb;
            display: inline-block;
            margin: 0.25rem 0;
        }
        .remove-btn {
            background: none;
            border: none;
            color: #dc3545;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            transition: color 0.2s;
        }
        .remove-btn:hover {
            color: #a71d2a;
        }
        .va-tip {
            background: #f8f9fa;
            border-radius: 6px;
            padding: 0.75rem 1rem;
            border-left: 3px solid #f9a825;
            margin: 0.75rem 0;
        }
        .legend-item .legend-color.va-blue {
            background: #1a4d7a;
        }
        .legend-item .legend-color.va-gold {
            background: #f9a825;
        }
        .legend-item .legend-color.va-green {
            background: #2e7d32;
        }
        .footer .social-icons a {
            color: #6c757d;
            margin-right: 0.75rem;
            font-size: 1.2rem;
            transition: color 0.2s;
        }
        .footer .social-icons a:hover {
            color: #1a4d7a;
        }
        .bilateral-flag-group {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            min-width: 80px;
            flex-shrink: 0;
        }
        .bilateral-flag-group .form-check-input {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        .bilateral-flag-group .form-check-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: #2c3e50;
            cursor: pointer;
            margin-bottom: 0;
        }
        @media (max-width: 576px) {
            .disability-entry {
                flex-direction: column;
                align-items: stretch;
            }
            .disability-entry .form-control.rating-input {
                max-width: 100%;
            }
            .bilateral-flag-group {
                justify-content: flex-start;
            }
        }