.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;
        }
        .numerology-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.purple {
            background-color: #6a1b9a;
        }
        .legend-color.gold {
            background-color: #f9a825;
        }
        .legend-color.teal {
            background-color: #00897b;
        }
        .legend-color.rose {
            background-color: #e91e63;
        }
        .number-badge {
            display: inline-block;
            width: 48px;
            height: 48px;
            line-height: 48px;
            border-radius: 50%;
            background: #6a1b9a;
            color: #fff;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-right: 10px;
        }
        .number-badge.master {
            background: #f9a825;
            color: #333;
        }
        .trait-pill {
            display: inline-block;
            background: rgba(106, 27, 154, 0.1);
            border-radius: 20px;
            padding: 0.25rem 0.75rem;
            font-size: 0.8rem;
            color: #4a148c;
            margin: 0.2rem 0.2rem;
        }
        .meaning-card {
            background: #fff;
            border-radius: 8px;
            padding: 1.2rem;
            margin-bottom: 1rem;
            border: 1px solid #e0e0e0;
            transition: box-shadow 0.2s;
        }
        .meaning-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .meaning-card .number-head {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        .meaning-card .number-head h5 {
            margin: 0;
            font-weight: 600;
        }
        .meaning-card .number-head small {
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .progress-bar-custom {
            height: 6px;
            background: #e9ecef;
            border-radius: 3px;
            margin: 0.5rem 0;
            overflow: hidden;
        }
        .progress-bar-custom .fill {
            height: 100%;
            border-radius: 3px;
            background: #6a1b9a;
        }
        .pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            margin: 0.3rem 0;
        }
        .pill-group .pill {
            background: #ede7f6;
            padding: 0.15rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            color: #4a148c;
        }
        .input-error {
            border-color: #dc3545 !important;
        }
        .input-error:focus {
            box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
        }