body { background-color: #FFDB00; color: #3B2824; margin: 0; display: flex; flex-direction: column; min-height: 100vh; }
       #global-loader { position: fixed; inset: 0; background-color: #FFDB00; z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease-out; }
       .hidden { display: none !important; }
       
       ::-webkit-scrollbar { width: 8px; }
       ::-webkit-scrollbar-track { background: #e2e8f0; }
       ::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 4px; }
       
       .toast { transform: translateY(100%); opacity: 0; transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); pointer-events: none; }
       .toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
       
       /* Card Base */
       .hexagon-base { clip-path: polygon(50% 0, 100% 25px, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px), 0 25px); transition: transform 0.3s ease; width: 100%; max-width: 320px; margin: 0 auto; background-color: white; min-height: 220px; }
       
       .hex-add-new { height: 100%; min-height: 220px; display: flex; flex-direction: column; justify-content: center; }
       
       #dashboardAnnouncement a { color: #FFDB00 !important; text-decoration: underline; font-weight: 800; }
       .prose h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; color: #3B2824; line-height: 1.2; }
       .prose a { color: #AF47D2; text-decoration: underline; }
       .prose p { margin-bottom: 1.5em; } 
       .prose ul { list-style-type: disc; padding-left: 1.5em; margin-bottom: 1.5em; }
       .prose ol { list-style-type: decimal; padding-left: 1.5em; margin-bottom: 1.5em; }
       [contenteditable]:empty:before { content: attr(placeholder); color: #9ca3af; display: block; }
       
       #system-status { position: fixed; top: 0; left: 0; right: 0; height: 4px; background: #ddd; z-index: 100; display: flex; justify-content: center; align-items: center; font-size: 10px; font-weight: bold; color: #fff; transition: all 0.3s; }
       #system-status.loading { background: #3b82f6; height: 24px; }
       #system-status.ready { background: #22c55e; height: 0px; overflow: hidden; }
       
       .footer-link { background: rgba(255,255,255,0.3); padding: 8px 16px; border-radius: 20px; font-weight: 600; color: #3B2824; transition: all 0.2s; font-size: 0.9rem; cursor: pointer; }
       .footer-link:hover { background: rgba(255,255,255,0.6); transform: translateY(-2px); }
       
       th.sortable { cursor: pointer; user-select: none; }
       th.sortable:hover { background-color: #f8fafc; color: #AF47D2; }
       
       /* Updated User Card: REMOVED BORDER */
       .user-card { cursor: pointer; position: relative; }
       
       /* Active color selection ring */
       .color-selected { ring-2 ring-offset-2 ring-slate-400; transform: scale(1.1); }
/* --- Profile website link: force gray (override Tailwind text-hive-purple) --- */
#profileViewWebsite,
#profileViewWebsite:link,
#profileViewWebsite:visited,
#profileViewWebsite:hover,
#profileViewWebsite:active {
  color: #6b7280 !important; /* match email/location gray */
  text-decoration: none;
}

#profileViewWebsite:hover {
  text-decoration: underline;
}

/* Keep icon nicely aligned when visible */
#profileViewWebsite {
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.6rem;
  line-height: 1.25;
}

#profileViewWebsite svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  overflow: visible;
  display: block;
}

/* Line clamp utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* List view drag and drop */
.app-list-row.dragging {
  opacity: 0.5;
}

/* Hexagon button (regular hexagon - flat top, all sides equal) */
.hexagon-btn {
  width: 32px;
  height: 28px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  flex-shrink: 0;
}
