.property-table th,
        .property-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid #dee2e6;
        }
        .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: #fafcfa;
            border: 1px solid #dee2e6;
            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%;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        .legend-color.green {
            background-color: #28a745;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.orange {
            background-color: #fd7e14;
        }
        .legend-color.purple {
            background-color: #6f42c1;
        }
        .legend-color.red {
            background-color: #dc3545;
        }
        .legend-color.gray {
            background-color: #6c757d;
        }
        .pay-summary-card {
            background: linear-gradient(135deg, #f8faf8 0%, #e8f5e9 100%);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1rem 0;
            border: 1px solid #c8e6c9;
        }
        .pay-amount {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a7a3a;
        }
        .pay-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6c757d;
        }
        .stat-box {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            border: 1px solid #dee2e6;
            height: 100%;
        }
        .stat-box .number {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1a7a3a;
        }
        .stat-box .label {
            font-size: 0.8rem;
            color: #6c757d;
            text-transform: uppercase;
        }
        .salary-breakdown {
            margin-top: 1.5rem;
        }
        .breakdown-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .breakdown-item .amount {
            font-weight: 600;
        }
        .breakdown-item.positive .amount {
            color: #28a745;
        }
        .breakdown-item.negative .amount {
            color: #dc3545;
        }
        .breakdown-total {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-top: 2px solid #28a745;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .input-group-text-custom {
            min-width: 120px;
            background-color: #f8f9fa;
        }
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
            margin-left: 0.5rem;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 26px;
        }
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }
        .toggle-switch input:checked+.toggle-slider {
            background-color: #28a745;
        }
        .toggle-switch input:checked+.toggle-slider:before {
            transform: translateX(24px);
        }
        .toggle-label {
            font-size: 0.9rem;
            font-weight: 500;
            margin-right: 0.5rem;
        }
        .currency-symbol {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a7a3a;
        }
        .period-selector .btn-group .btn {
            font-size: 0.85rem;
        }
        .period-selector .btn-group .btn.active {
            background-color: #28a745;
            border-color: #28a745;
            color: white;
        }
        .section-divider {
            border-top: 2px dashed #dee2e6;
            margin: 2rem 0;
        }
        .table-compact th,
        .table-compact td {
            padding: 0.5rem 0.75rem;
        }
        @media (max-width: 768px) {
            .pay-amount {
                font-size: 2rem;
            }
            .stat-box .number {
                font-size: 1.4rem;
            }
            .legend {
                gap: 1rem;
                font-size: 0.8rem;
            }
            .input-group-text-custom {
                min-width: 80px;
                font-size: 0.85rem;
            }
        }