.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.green {
            color: #28a745;
        }
        .result-value.orange {
            color: #fd7e14;
        }
        .result-value.purple {
            color: #6f42c1;
        }
        .result-value.red {
            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: #fafbfc;
            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: 4px;
        }
        .legend-color.regular {
            background-color: #28a745;
        }
        .legend-color.overtime {
            background-color: #fd7e14;
        }
        .legend-color.weekend {
            background-color: #6f42c1;
        }
        .legend-color.holiday {
            background-color: #dc3545;
        }
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .summary-card .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #6c757d;
        }
        .summary-card .amount {
            font-size: 1.6rem;
            font-weight: 700;
            margin-top: 0.2rem;
        }
        .summary-card .amount.green {
            color: #28a745;
        }
        .summary-card .amount.orange {
            color: #fd7e14;
        }
        .summary-card .amount.purple {
            color: #6f42c1;
        }
        .summary-card .amount.red {
            color: #dc3545;
        }
        .summary-card .amount.primary {
            color: var(--primary-color);
        }
        .rate-badge {
            display: inline-block;
            background: rgba(40, 167, 69, 0.12);
            padding: 0.15rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #28a745;
        }
        .rate-badge.orange {
            background: rgba(253, 126, 20, 0.12);
            color: #fd7e14;
        }
        .rate-badge.purple {
            background: rgba(111, 66, 193, 0.12);
            color: #6f42c1;
        }
        .rate-badge.red {
            background: rgba(220, 53, 69, 0.12);
            color: #dc3545;
        }
        .tool-header .badge {
            font-size: 0.75rem;
            vertical-align: middle;
        }
        .input-group-prepend .input-group-text .fas {
            width: 1.2rem;
        }
        .rate-indicator {
            font-size: 0.85rem;
            color: #6c757d;
            margin-left: 0.3rem;
        }
        @media (max-width: 576px) {
            .summary-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .legend {
                gap: 0.8rem;
                font-size: 0.75rem;
            }
        }