/* CarkedIt Online — Phase Header Component */

.phase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  min-height: 40px;
}

.phase-header__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phase-header__title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phase-header__app-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-phase-header-text);
  line-height: 1;
  letter-spacing: -0.44px;
}

/* Partner co-brand shown next to "CarkedIt" during play. */
.phase-header__cobrand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
}
.phase-header__cobrand-logo {
  height: 16px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}
.phase-header__cobrand-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-phase-header-text);
  line-height: 1;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phase-header__phase-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-phase-header-text);
  line-height: 1;
}

.phase-header__settings-btn {
  width: 44px;
  height: 44px;
  background: var(--color-phase-settings-bg);
  border: 1px solid var(--color-phase-settings-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.phase-header__settings-btn:active {
  opacity: 0.8;
}
