.chat-header-dj {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 4px;
  flex-shrink: 1;
  min-width: 0;
  justify-content: flex-end;
}

.chat-header-actions .dj-join-btn {
  border: 1px solid rgba(41, 121, 255, 0.45);
  background: rgba(41, 121, 255, 0.12);
  color: var(--accent, #2979ff);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  display: none;
  align-items: center;
}

.chat-header-actions .dj-join-btn:hover {
  background: var(--accent, #2979ff);
  color: #fff;
  border-color: var(--accent, #2979ff);
}

.chat-header-actions .dj-join-btn.dj-on-air {
  border-color: #e53935;
  background: rgba(229, 57, 53, 0.15);
  color: #e53935;
}

.chat-header-actions .dj-join-btn.dj-on-air:hover {
  background: #e53935;
  color: #fff;
}

.dj-header-strip {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: min(480px, 60vw);
}

.dj-header-chip-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 20px;
  padding: 5px 12px 5px 6px;
  background: rgba(20, 20, 28, 0.75);
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  box-shadow: 0 2px 10px rgba(229, 57, 53, 0.35);
  border: 1px solid rgba(229, 57, 53, 0.5);
}

button.dj-header-chip-live {
  cursor: pointer;
}

button.dj-header-chip-live:hover {
  background: rgba(229, 57, 53, 0.25);
  border-color: #e53935;
}

.dj-header-chip-live.is-self {
  cursor: default;
}

.dj-chip-live {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: #e53935;
  padding: 2px 6px;
  border-radius: 6px;
  animation: dj-live-pulse 1.4s ease infinite;
}

@keyframes dj-live-pulse {
  50% { opacity: 0.75; }
}

.dj-chip-name {
  font-weight: 600;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-dj-badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #7c4dff, #2979ff);
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: auto;
}

.member-live-badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: #e53935;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: auto;
}

/* Şarkı isteği modal */
.dj-request-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.dj-request-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.dj-request-dialog {
  position: relative;
  width: min(400px, 100%);
  background: var(--bg-white, #fff);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.dj-request-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark, #111);
}

.dj-request-dialog .form-group {
  margin-bottom: 12px;
}

.dj-request-dialog label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid, #54656f);
  margin-bottom: 4px;
}

.dj-request-dialog input,
.dj-request-dialog textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}

.dj-request-dialog textarea {
  resize: vertical;
  min-height: 72px;
}

.dj-request-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

html.layout-compact .chat-header-dj {
  max-width: 50vw;
}

html.layout-compact .dj-header-strip {
  max-width: 100%;
}

html.layout-compact .chat-header-actions .dj-join-btn {
  font-size: 11px;
  padding: 5px 8px;
}
