        .property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        .input-group-custom {
            margin-bottom: 1rem;
        }
        .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;
            position: relative;
        }
        .legend {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin: 0.5rem 0;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .legend-color {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .legend-color.green { background-color: #28a745; }
        .legend-color.blue { background-color: #0d6efd; }
        .legend-color.orange { background-color: #fd7e14; }
        .legend-color.red { background-color: #dc3545; }
        .legend-color.purple { background-color: #6f42c1; }
        .legend-color.gray { background-color: #6c757d; }
        .legend-color.teal { background-color: #20c997; }
        .net-pay-big {
            font-size: 3.5rem;
            font-weight: 700;
            color: #28a745;
        }
        .net-pay-label {
            font-size: 1rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pay-frequency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .pay-frequency-item {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            border: 1px solid #e9ecef;
        }
        .pay-frequency-item .amount {
            font-size: 1.6rem;
            font-weight: 600;
            color: #0d6efd;
        }
        .pay-frequency-item .label {
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .deduction-table th {
            background-color: #f1f3f5;
        }
        .deduction-table .total-row {
            font-weight: 700;
            background-color: #e9ecef;
        }
        .deduction-table .net-row {
            font-weight: 700;
            background-color: #d4edda;
            color: #155724;
        }
        .tool-header .lead {
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .net-pay-big {
                font-size: 2.4rem;
            }
            .pay-frequency-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .legend {
                font-size: 0.7rem;
                gap: 0.6rem;
            }
            .legend-item {
                gap: 0.2rem;
            }
        }
        .state-selector {
            max-width: 100%;
        }
        .chart-wrapper {
            background: #ffffff;
            border-radius: 8px;
            padding: 1rem;
            border: 1px solid #e9ecef;
        }
        .badge-pay {
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }
        .data-source-badge {
            font-size: 0.8rem;
            color: #6c757d;
            background: #f1f3f5;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            display: inline-block;
            margin-top: 0.5rem;
        }
        .limitations-box {
            background-color: #fef3cd;
            border: 1px solid #ffe69c;
            border-radius: 8px;
            padding: 1.25rem;
            margin: 1.5rem 0;
        }
        .limitations-box ul {
            margin-bottom: 0;
        }
        .disclaimer-box {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
            color: #721c24;
        }
        .chart-placeholder {
            text-align: center;
            color: #6c757d;
            padding: 2rem 0;
            font-style: italic;
        }