/* ─── Agents ──────────────────────────────────────────────── */

.agent-list-item {
  transition: all 0.15s;
}

/* Tab buttons */
.agent-tab {
  transition: all 0.15s;
}

/* Toolset items */
.toolset-item {
  transition: all 0.15s;
  user-select: none;
}

/* Avatar pulse when active */
.agent-avatar {
  transition: box-shadow 0.2s;
}

/* ─── Prompt Modal ────────────────────────────────────────── */
#prompt-modal textarea {
  transition: border-color 0.2s;
}
#prompt-modal ::-webkit-scrollbar       { width: 6px; }
#prompt-modal ::-webkit-scrollbar-track { background: transparent; }
#prompt-modal ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

/* ─── New Agent Modal ─────────────────────────────────────── */
#new-agent-modal input {
  transition: border-color 0.2s, box-shadow 0.2s;
}
#new-agent-modal input:focus {
  box-shadow: 0 0 0 2px rgba(255, 106, 18, 0.15);
}

/* ─── Toggle animation ────────────────────────────────────── */
#lf-chat-toggle span,
#agent-active-toggle span {
  transition: transform 0.2s ease;
}

/* Time input dark */
#agent-field-dream-time {
  color-scheme: dark;
}

/* Agents tab content scrollbar */
#agents-tab-content::-webkit-scrollbar       { width: 4px; }
#agents-tab-content::-webkit-scrollbar-track { background: transparent; }
#agents-tab-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 2px; }
