.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }.form-label{font-size:0.95rem}
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value.balloon {
            color: #dc3545;
        }
        .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.blue {
            background-color: #0d6efd;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.green {
            background-color: #198754;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .legend-line {
            width: 24px;
            height: 3px;
            border-radius: 2px;
        }
        .legend-line.blue {
            background-color: #0d6efd;
        }
        .legend-line.red {
            background-color: #dc3545;
        }
        .legend-line.dashed {
            background: transparent;
            border-top: 2px dashed #dc3545;
            width: 24px;
            height: 0;
        }
        .schedule-container {
            max-height: 400px;
            overflow-y: auto;
            margin-top: 1rem;
            border: 1px solid #ddd;
            border-radius: 6px;
        }
        .schedule-table {
            width: 100%;
            font-size: 0.9rem;
            border-collapse: collapse;
        }
        .schedule-table th {
            position: sticky;
            top: 0;
            background: #f8f9fa;
            z-index: 2;
            padding: 0.5rem;
            border-bottom: 2px solid #ddd;
        }
        .schedule-table td {
            padding: 0.4rem 0.5rem;
            border-bottom: 1px solid #eee;
            text-align: right;
        }
        .schedule-table td:first-child,
        .schedule-table th:first-child {
            text-align: center;
        }
        .schedule-table tr:hover {
            background-color: rgba(0, 102, 204, 0.05);
        }
        .schedule-table .balloon-row {
            background-color: #fff0f0 !important;
            font-weight: 600;
        }
        .schedule-table .balloon-row td {
            border-bottom: 2px solid #dc3545;
        }
        .result-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .result-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .result-card .label {
            font-size: 0.85rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .result-card .value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0d6efd;
        }
        .result-card .value.balloon {
            color: #dc3545;
        }
        .result-card .value.green {
            color: #198754;
        }
        .disclaimer-box {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 1rem;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            .result-grid {
                grid-template-columns: 1fr 1fr;
            }
            .comparison-grid {
                grid-template-columns: 1fr;
            }
        }
        .badge-custom {
            font-size: 0.8rem;
            background: #e9ecef;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            color: #495057;
        }