/* ── Postava ──────────────────────────────────────────────────────────────────  */

.char-switcher { margin-bottom: .75rem; }

.char-card { display: flex; flex-direction: column; gap: .75rem; }

.char-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.char-name  { font-size: 1.2rem; font-weight: 800; }
.char-status { font-size: .75rem; color: var(--text-dim); }

.char-label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-dim);
}
.char-textarea {
  width: 100%;
  min-height: 60dvh;
  resize: vertical;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
  padding: .75rem;
  font-family: system-ui, sans-serif;
  -webkit-overflow-scrolling: touch;
  transition: border-color .15s;
}
.char-textarea:focus { outline: none; border-color: var(--accent); background: var(--input-bg-focus); }
.char-textarea[readonly] { opacity: .65; cursor: default; border-style: dashed; }

/* ── GM panel ────────────────────────────────────────────────────────────────── */

.gm-section-title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .65rem;
  color: var(--text);
}

/* Hráči */
.gm-player {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.gm-player:last-child { border-bottom: none; }

.gm-player-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gm-player-dot.online  { background: #4caf50; box-shadow: 0 0 4px #4caf50; }
.gm-player-dot.offline { background: var(--text-dim); }

.text-dim { color: var(--text-dim); font-style: italic; font-size: .875rem; }

/* Audio upload */
.audio-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .65rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
  cursor: pointer;
  font-size: .9rem;
  margin-bottom: .75rem;
  transition: border-color .15s, color .15s;
  user-select: none;
}
.audio-upload-label:hover { border-color: var(--accent); color: var(--accent); }

#audio-upload-progress {
  font-size: .8rem;
  color: var(--text-dim);
  margin-bottom: .5rem;
  text-align: center;
}

/* Audio seznam */
.audio-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.audio-row:last-child { border-bottom: none; }

.audio-name {
  flex: 1;
  font-size: .9rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-dur {
  font-size: .8rem;
  color: var(--text-dim);
  font-family: monospace;
  white-space: nowrap;
}
.audio-play-btn {
  white-space: nowrap;
  font-size: .82rem;
  padding: .35rem .65rem;
}

/* Aktuálně přehráváno */
.audio-now-playing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: .75rem;
  padding: .6rem .85rem;
  background: #0d2b0d;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  flex-wrap: wrap;
  animation: toastIn .2s ease;
}
#audio-np-name {
  font-size: .875rem;
  color: #4caf50;
  font-weight: 600;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .char-textarea { min-height: 68dvh; }
}
