.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;
        }
        .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.green {
            background-color: #28a745;
        }
        .legend-color.blue {
            background-color: #0d6efd;
        }
        .legend-color.gold {
            background-color: #ffc107;
        }
        .legend-color.green-pattern {
            background: repeating-linear-gradient(45deg, #28a745, #28a745 4px, #fff 4px, #fff 8px);
        }
        .legend-color.blue-pattern {
            background: repeating-linear-gradient(135deg, #0d6efd, #0d6efd 4px, #fff 4px, #fff 8px);
        }
        .legend-color.gold-pattern {
            background: repeating-linear-gradient(90deg, #ffc107, #ffc107 4px, #fff 4px, #fff 8px);
        }
        .salary-badge {
            font-size: 0.85rem;
            background: #e9ecef;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            display: inline-block;
        }
        .inflation-badge {
            background: #fff3cd;
            color: #856404;
        }
        .real-badge {
            background: #d4edda;
            color: #155724;
        }
        .progress-bar-custom {
            height: 24px;
            border-radius: 12px;
            background-color: #e9ecef;
            overflow: hidden;
            margin: 0.5rem 0;
            position: relative;
        }
        .progress-bar-custom .fill {
            height: 100%;
            border-radius: 12px;
            transition: width 0.6s ease;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 10px;
            font-weight: 600;
            font-size: 0.85rem;
            color: #fff;
        }
        .pay-raise-tip {
            background: #e8f5e9;
            border-radius: 8px;
            padding: 1rem;
            border-left: 4px solid #2e7d32;
            margin: 1rem 0;
        }
        .pay-raise-tip.warning {
            background: #fff8e1;
            border-left-color: #f57f17;
        }
        .period-selector {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin: 0.5rem 0;
        }
        .period-btn {
            padding: 0.3rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 20px;
            background: #fff;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.85rem;
        }
        .period-btn.active {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }
        .period-btn:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .comparison-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        .comparison-card .number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .comparison-card .label {
            font-size: 0.85rem;
            color: #6c757d;
        }
        .comparison-card .sub {
            font-size: 0.8rem;
            color: #6c757d;
        }
        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
            }
        }
        .salary-timeline {
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 160px;
            padding: 0 0.5rem;
            border-bottom: 2px solid #dee2e6;
        }
        .timeline-bar {
            flex: 1;
            margin: 0 0.2rem;
            border-radius: 4px 4px 0 0;
            min-height: 8px;
            transition: height 0.5s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding-bottom: 4px;
        }
        .timeline-bar .bar-label {
            font-size: 0.6rem;
            color: #6c757d;
            margin-top: 4px;
            white-space: nowrap;
            transition: transform 0.2s;
        }
        @media (max-width: 576px) {
            .timeline-bar .bar-label {
                transform: rotate(-45deg);
                margin-top: 8px;
            }
        }
        .timeline-bar .bar-value {
            font-size: 0.6rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 2px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f0f7ff 0%, #e3f0ff 100%);
            border-radius: 8px;
            padding: 1.2rem;
            border: 1px solid #b8daff;
            margin: 1rem 0;
        }
        .bar-solid {
            background: #28a745;
        }
        .bar-striped {
            background: repeating-linear-gradient(45deg, #0d6efd, #0d6efd 6px, #fff 6px, #fff 10px);
        }
        .bar-dotted {
            background: repeating-linear-gradient(90deg, #ffc107, #ffc107 4px, #fff 4px, #fff 8px);
        }
        .bar-solid, .bar-striped, .bar-dotted {
            border-radius: 3px 3px 0 0;
            min-height: 4px;
            transition: height 0.5s;
        }
        .invalid-feedback {
            display: none;
            font-size: 0.875rem;
        }
        .is-invalid ~ .invalid-feedback {
            display: block;
        }