

    :root {
      --primary-blue: #074C9F;
      --primary-yellow: #EDBC0B;
      --accent-blue: #13B3F3;
      --text-dark: #050B1C;
      --text-muted: #555e7a;
      --bg-page: #f4f6fb;
      --bg-card: #ffffff;
      --border: #e0e5f0;
      --radius-card: 14px;
      --radius-section: 16px;
    }

   

    .user-dashboard {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
    }

    /* ─── Stat Cards ─── */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 2rem;
    }

    @media (max-width: 900px) {
      .stat-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .stat-grid { grid-template-columns: 1fr; }
    }

    .stat-card {
      border-radius: var(--radius-card);
      padding: 1.25rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition:transform 1s;
    }
    .stat-card:hover{
        transform:translateY(-5px);
    }
    .stat-card.green  { background: #e6f9f0; }
    .stat-card.yellow { background: #fef8e1; }
    .stat-card.purple { background: #ede8fa; }
    .stat-card.blue   { background: #e2f6fe; }
    .stat-card.pink   { background: #ffd2d8; }
    .stat-card.orange { background: #ffede1;}
    .stat-card.pestal-blue { background: #d6e7ff;}

    .stat-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .stat-label {
      font-size: 18px;
      color: var(--text);
      font-weight: 600;
    }

    .stat-icon {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .stat-icon svg { width: 32px; height: 32px; }

    .stat-value {
      font-size: 30px;
      font-weight: 500;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }

    .stat-sub { font-size: 13px; font-weight: 500; display:flex; justify-content:space-between; align-items:center; display-swap:swap;}
    .stat-card.green  .stat-sub a{ color: #036f3c; }
    .stat-card.yellow .stat-sub a{ color: #bc970a; }
    .stat-card.purple .stat-sub a{ color: #6c3fc7; }
    .stat-card.blue   .stat-sub a{ color: var(--accent-blue); }
    /*.stat-card.green .stat-sub a { color: #036f3c; }*/
    .stat-card.orange .stat-sub a { color: #ff6600; }
    .stat-card.pink .stat-sub a { color: #ff0022; }
    .stat-card.pestal-blue .stat-sub a { color: #006aff; }
    .btn-more-dashboard{   
    background: transparent;
    color: #030303;
    font-size: 16px;
    font-weight: 400;
    padding: 4px 20px;
    border-radius: 5px;
    border: 1.5px solid #f97d2b;
    }
    .btn-more-dashboard.wishlist{border: 1.5px solid #ff0022;}
    .btn-more-dashboard.new-properties{border: 1.5px solid #006aff;}
    .btn-more-dashboard.total-property{border: 1.5px solid #036f3c;}
    .btn-more-dashboard.commercial-property{border: 1.5px solid #bc970a;}
    .btn-more-dashboard.residential-property{border: 1.5px solid #6c3fc7;}
    .btn-more-dashboard.other-property{border: 1.5px solid var(--accent-blue);}

    /* ─── Interested Property Section ─── */
    .section {
      background: var(--bg-card);
      border-radius: var(--radius-section);
      border: 0.5px solid var(--border);
      padding: 1.5rem;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
    }

    .section-title {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .total-count {
      font-size: 13px;
      color: var(--primary-blue);
    }
    .total-count strong { font-weight: 600; }

    /* ─── Property Cards ─── */
    .property-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    @media (max-width: 800px) {
      .property-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .property-grid { grid-template-columns: 1fr; }
    }

    .property-card {
      border-radius: 12px;
      border: 0.5px solid var(--border);
      overflow: hidden;
      background: var(--bg-card);
      transition: box-shadow 0.15s ease;
    }
    .property-card:hover {
      box-shadow: 0 4px 18px rgba(7, 76, 159, 0.1);
    }

    .property-img {
      width: 100%;
      height: 170px;
      overflow: hidden;
      background: #dce8f5;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .property-img img {
      width: 100%;
      height: 170px;
      object-fit: cover;
      display: block;
    }

    .property-body {
      padding: 0.75rem 1rem 1rem;
    }

    .property-id {
      font-size: 16px;
      font-weight: 600;
      color: var(--primary-blue);
      margin-bottom: 6px;
    }

    .property-desc {
      font-size: 16px;
      color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    }

    /* ─── Footer ─── */
    .section-footer {
      display: flex;
      justify-content: flex-end;
      margin-top: 1.25rem;
    }

    .show-more-btn {
      background: var(--primary-blue);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding: 10px 28px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      letter-spacing: 0.2px;
      transition: background 0.15s ease;
    }
    .show-more-btn:hover { background: #0560c1; }
 