.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .deep-dive {
            margin: 1.8rem 0;
        }
        .deep-dive p {
            text-align: justify;
        }
        .unit-note {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .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.green {
            background-color: #28a745;
        }
        .legend-color.orange {
            background-color: #fd7e14;
        }
        .result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .result-card {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .result-card .label {
            font-size: 0.85rem;
            color: #6c757d;
            font-weight: 500;
        }
        .result-card .value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: 'Cambria Math', serif;
        }
        .result-card .unit {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .trajectory-annotation {
            font-size: 0.85rem;
            color: #495057;
        }
        .safety-banner {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
            padding: 0.75rem 1.25rem;
            border-radius: 4px;
            margin: 1rem 0;
            font-weight: 500;
        }
        .glossary-term {
            font-weight: 600;
            color: var(--accent-color);
        }
        .error-message {
            color: #dc3545;
            font-weight: 500;
        }