.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .result-value-small {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.3rem;
        }
        .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: #fafafa;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-top: 1.5rem;
            display: block;
        }
        .canvas-container {
            text-align: center;
            margin-top: 1rem;
        }
        .canvas-actions {
            margin-top: 0.5rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .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.gray {
            background-color: #6c757d;
        }
        .dim-input-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .dim-input-group label {
            min-width: 60px;
            font-weight: 500;
        }
        .dim-input-group input {
            flex: 1;
            min-width: 80px;
        }
        .unit-selector {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .unit-selector select {
            width: auto;
            min-width: 100px;
        }
        .shape-selector {
            margin-bottom: 1.2rem;
        }
        .shape-selector select {
            font-size: 1rem;
            padding: 0.5rem 1rem;
        }
        .dim-fields {
            background-color: rgba(70, 130, 180, 0.03);
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid #e9ecef;
            margin: 0.8rem 0;
        }
        .result-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin: 1rem 0;
        }
        .result-card {
            background-color: #f8f9fa;
            border-radius: 6px;
            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.6rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .result-card .sub {
            font-size: 0.9rem;
            color: #6c757d;
        }
        .partial-result {
            background-color: #e8f5e9;
            border: 1px solid #a5d6a7;
            border-radius: 6px;
            padding: 0.8rem 1.2rem;
            margin-top: 0.8rem;
            text-align: center;
        }
        @media (max-width: 576px) {
            .result-grid {
                grid-template-columns: 1fr;
            }
            .dim-input-group {
                flex-direction: column;
                align-items: stretch;
            }
            .dim-input-group label {
                min-width: auto;
            }
        }