.hamnaghsheh-dashboard {
    font-family: 'Vazirmatn', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    min-height: 70vh;
    margin: 0 !important;
    background: oklch(98.4% 0.003 247.858);
    width: 100%;
    max-width: 100%;
}

.hamnaghsheh-dashboard *{
    font-family: 'Vazirmatn' !important;
}

.hamnaghsheh-projects {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.hamnaghsheh-project-card {
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.hamnaghsheh-new-project {
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}

.hamnaghsheh-new-project input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.hamnaghsheh-new-project button {
    padding: 8px 12px;
    border: none;
    background: #2b90ff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

/* ============================================
   HIDE ALL SHARE LINKS EXCEPT THE MOST RECENT ONE
   ============================================ */

/* Hide all link cards by default */
#share-links-list .grid > div {
  display: none;
}

/* Show only the first card (most recent one) */
#share-links-list .grid > div:nth-child(1) {
  display: block;
}

/* Remove scroll container since we only show 1 item */
#share-links-list .grid {
  max-height: none !important;
  overflow-y: visible !important;
}