.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;
        }
        .ecology-canvas {
            width: 100%;
            height: auto;
            background-color: #fafafa;
            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: 3px;
        }
        .legend-color.green {
            background-color: #2e7d32;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .species-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0.5rem 0;
        }
        .species-table th {
            background-color: #e9f5e9;
            font-weight: 600;
            padding: 0.6rem 0.5rem;
            border-bottom: 2px solid #2e7d32;
        }
        .species-table td {
            padding: 0.4rem 0.3rem;
            border-bottom: 1px solid #e0e0e0;
            vertical-align: middle;
        }
        .species-table .species-name-input {
            width: 100%;
            min-width: 80px;
        }
        .species-table .species-count-input {
            width: 80px;
        }
        .species-table .btn-remove-species {
            color: #b71c1c;
            background: none;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 0 6px;
        }
        .species-table .btn-remove-species:hover {
            color: #d32f2f;
            transform: scale(1.15);
        }
        .add-species-btn {
            margin: 0.5rem 0 0.2rem 0;
        }
        .result-species-table {
            font-size: 0.95rem;
            margin: 1rem 0;
        }
        .result-species-table th {
            background-color: #f0f7f0;
        }
        .interpretation-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .badge-low {
            background-color: #ffcdd2;
            color: #b71c1c;
        }
        .badge-moderate {
            background-color: #fff9c4;
            color: #f57f17;
        }
        .badge-high {
            background-color: #c8e6c9;
            color: #1b5e20;
        }
        .badge-very-high {
            background-color: #a5d6a7;
            color: #004d40;
        }
        .result-detail-card {
            background-color: #f8fff8;
            border: 1px solid #d0e8d0;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin: 0.8rem 0;
        }