:root { --primary: #6366f1; --bg-soft: #f8fafc; --chart-stroke: #334155; --chart-bg: #ffffff; }
        body { font-family: 'Poppins', sans-serif; background-color: var(--bg-soft); color: #1e293b; padding-bottom: 20px; }

        /* --- UTILS --- */
        .avatar-circle { width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1.2rem; }
        .btn-back { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 10px 15px; font-weight: 600; color: #64748b; transition: 0.2s; }
        .btn-back:hover { background: #f1f5f9; color: var(--primary); }

        /* --- CHART SVG STYLING --- */
        #chart-container { width: 100%; max-width: 600px; margin: 0 auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05)); }
        .house-poly { fill: var(--chart-bg); stroke: var(--chart-stroke); stroke-width: 1.5; transition: fill 0.3s; cursor: pointer; }
        .house-poly:hover { fill: #eef2ff; }
        .house-poly.active { fill: #e0e7ff; stroke: var(--primary); stroke-width: 2.5; }
        .sign-num { font-size: 14px; font-weight: bold; fill: #94a3b8; pointer-events: none; }
        .planet-text { font-size: 14px; font-weight: 600; fill: #1e293b; pointer-events: none; }

        /* --- INSIGHT PANEL --- */
        #insight-panel {
            background: white; border-radius: 24px; padding: 25px;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
            display: none; 
        }

        /* --- GRID CARDS --- */
        .profile-card { background: white; border-radius: 24px; padding: 20px; border: 2px solid transparent; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); cursor: pointer; transition: 0.2s; user-select: none; /* <--- ADDED THIS */
    -webkit-user-select: none; /* Safari support */ }
        .profile-card:hover { transform: translateY(-4px); }
        .add-card { border: 2px dashed #cbd5e1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #94a3b8; }
        
        /* --- FORM STYLING --- */
        .form-control, .form-select { border-radius: 12px; padding: 12px; border: 1px solid #e2e8f0; }
        .btn-check:checked + .btn-outline-primary { background-color: var(--primary); border-color: var(--primary); color: white; }
        .btn-outline-primary { color: #64748b; border-color: #e2e8f0; border-radius: 12px; }

        /* Desktop Layout */
        @media (min-width: 992px) {
            #full-view-layout { display: flex; gap: 30px; align-items: flex-start; }
            #chart-section { flex: 2; }
            #insight-panel { display: block; flex: 1; min-height: 500px; border: 1px solid #e2e8f0; box-shadow: none; }
        }

        /* Landing Page Enhancements */
        .feature-icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 1rem;
        }
        .landing-footer-link {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.2s;
        }
        .landing-footer-link:hover {
            color: var(--primary);
        }

        /* Dashboard Footer */
        .dashboard-footer {
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }
        .dashboard-footer a {
            color: #64748b;
            text-decoration: none;
            font-weight: 500;
        }
        .dashboard-footer a:hover {
            color: var(--primary);
        }
