.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }.author-bio{display:block}
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-label {
            font-weight: 500;
            color: #333;
        }
        .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: #f8faf8;
            border: 1px solid #d0ddd0;
            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: #2d6a4f;
        }
        .legend-color.orange {
            background-color: #e76f51;
        }
        .legend-color.blue {
            background-color: #2a9d8f;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .result-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem 1.5rem;
            margin: 1rem 0;
        }
        .result-grid .result-item {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0.6rem;
            background: #f8faf8;
            border-radius: 4px;
            border-bottom: 1px solid #e8ede8;
        }
        .result-grid .result-item .label {
            font-weight: 500;
            color: #333;
        }
        .result-grid .result-item .value {
            font-weight: 600;
            color: #2d6a4f;
            font-size: 1.1rem;
        }
        .badge-pitch {
            background-color: #2d6a4f;
            color: #fff;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        @media (max-width: 576px) {
            .result-grid {
                grid-template-columns: 1fr;
            }
        }
        .ref-link {
            color: #2d6a4f;
            text-decoration: none;
            font-weight: 500;
        }
        .ref-link:hover {
            text-decoration: underline;
        }
        .tool-header .badge {
            background-color: #2d6a4f !important;
        }
        .btn-outline-primary {
            color: #2d6a4f;
            border-color: #2d6a4f;
        }
        .btn-outline-primary:hover {
            background-color: #2d6a4f;
            border-color: #2d6a4f;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(45, 106, 79, 0.08);
            color: #2d6a4f;
        }
        .accordion-button:focus {
            border-color: #2d6a4f;
            box-shadow: 0 0 0 0.25rem rgba(45, 106, 79, 0.25);
        }