.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;
        }
        .foc-gauge {
            width: 100%;
            height: 20px;
            background: linear-gradient(to right, #28a745, #ffc107, #dc3545);
            border-radius: 10px;
            position: relative;
            margin: 1rem 0;
        }
        .foc-gauge-marker {
            position: absolute;
            top: -8px;
            width: 4px;
            height: 36px;
            background: #000;
            border-radius: 2px;
            transform: translateX(-50%);
        }
        .foc-gauge-marker::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #000;
        }
        .foc-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #555;
            margin-top: 4px;
        }
        .foc-rating-badge {
            display: inline-block;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1rem;
        }
        .foc-rating-badge.low {
            background-color: #28a745;
            color: #fff;
        }
        .foc-rating-badge.moderate {
            background-color: #ffc107;
            color: #000;
        }
        .foc-rating-badge.high {
            background-color: #dc3545;
            color: #fff;
        }
        .foc-rating-badge.extreme {
            background-color: #6c757d;
            color: #fff;
        }
        .foc-warning {
            color: #dc3545;
            font-weight: 600;
            margin: 0.5rem 0;
        }