/* public/styles.css */
:root {
  --bg-primary: #0f0f1a;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #252542;
  --bg-card: #1e1e35;
  --bg-overlay: #000000b3;
  --text-primary: #fff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --accent-primary: #9d47c5;
  --accent-secondary: #8b3ab0;
  --accent-gradient: linear-gradient(135deg, #9d47c5 0%, #8b3ab0 100%);
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --border-color: #2a2a45;
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 2px 4px #0003;
  --shadow-md: 0 4px 12px #0000004d;
  --shadow-lg: 0 8px 24px #0006;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --bottom-button-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow: hidden;
  height: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

#root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app {
  display: flex;
  background: var(--bg-primary);
  flex-direction: column;
  height: 100%;
}

.app.wizard {
  padding-bottom: var(--bottom-button-height);
}

.wizard-step {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wizard-step__content {
  overflow-y: auto;
  flex: 1;
  padding: 16px;
}

.wizard-step__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.ad-dialog {
  display: flex;
  background: #1c1c1c;
  flex-direction: column;
  height: 100%;
}

.ad-dialog__content {
  display: flex;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  center;
  padding: 40px 24px;
}

.ad-dialog__icon {
  object-fit: contain;
  width: 140px;
  height: 140px;
  margin-bottom: 32px;
}

.ad-dialog__title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.ad-dialog__text {
  color: var(--text-secondary);
  max-width: 320px;
  font-size: 16px;
  line-height: 1.6;
}

.ad-dialog__buttons {
  display: flex;
  background: #191919;
  border-top: 3px solid #2e2e2e00;
  flex-direction: column;
  gap: 12px;
  padding: 6px 24px 32px;
}

.ad-dialog__report-toggle {
  display: flex;
  border-radius: var(--border-radius);
  background: #ffffff0d;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 8px;
  padding: 12px 16px;
}

.ad-dialog__report-label {
  color: var(--text-secondary);
  font-size: 14px;
}

.ad-dialog__report-hint {
  color: var(--text-muted);
  text-align: center;
  margin: -12px 0 8px;
  font-size: 12px;
}

.toggle-switch {
  position: relative;
  flex-shrink: 0;
  width: 58px;
  height: 32px;
  margin-right: 4px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch__slider {
  position: absolute;
  cursor: pointer;
  background-color: #3a3a3a;
  border-radius: 32px;
  transition: all .3s;
  inset: 0;
}

.toggle-switch__slider:before {
  position: absolute;
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  transition: all .3s;
  bottom: 3px;
  left: 3px;
}

.toggle-switch input:checked + .toggle-switch__slider {
  background: var(--accent-gradient);
}

.toggle-switch input:checked + .toggle-switch__slider:before {
  transform: translateX(26px);
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  margin-bottom: 16px;
  padding: 20px;
}

.section-card__header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 16px;
}

.section-card__title {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}

.info-btn {
  border: 2px solid var(--text-muted);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  background: none;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: 600;
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.timer-btn {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  cursor: pointer;
  border: none;
  padding: 16px 8px;
  transition: all .2s;
  font-size: 15px;
  font-weight: 500;
}

.timer-btn:hover, .timer-btn--active {
  background: var(--accent-primary);
  color: #fff;
}

.multipost-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}

.toggle-btn {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  cursor: pointer;
  border: none;
  flex: 1;
  padding: 16px;
  transition: all .2s;
  font-size: 15px;
  font-weight: 500;
}

.toggle-btn:first-child {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.toggle-btn:last-child {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.toggle-btn--active {
  background: var(--accent-primary);
  color: #fff;
}

.add-channel-btn {
  display: flex;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  padding: 16px;
  font-size: 15px;
}

.repeat-copy-btn {
  display: flex;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  color: var(--accent-primary);
  cursor: pointer;
  border: none;
  justify-content: flex-start;
  align-items:  center;
  width: 100%;
  margin-bottom: 12px;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
}

.repeat-copy-btn:hover:not(:disabled) {
  background: var(--bg-secondary);
}

.repeat-copy-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.selected-channels {
  margin-top: 16px;
}

.channel-item {
  display: flex;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  align-items:  center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 12px;
  transition: all .2s;
}

.channel-item:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-primary);
}

.channel-item--selected {
  border-color: var(--accent-primary);
  background: #8b5cf633;
}

.channel-item__avatar {
  background: var(--accent-gradient);
  display: flex;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.channel-item__avatar--image {
  object-fit: cover;
  background: none;
}

.channel-item__info {
  flex: 1;
  min-width: 0;
}

.channel-item__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 500;
}

.channel-item__username {
  color: var(--text-secondary);
  font-size: 13px;
}

.channel-item__remove {
  color: var(--text-muted);
  cursor: pointer;
  background: #ffffff1a;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 14px;
}

.channel-item__check {
  border: 2px solid var(--border-color);
  display: flex;
  color: var(--accent-primary);
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  font-size: 14px;
}

.channel-item--selected .channel-item__check {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bottom-button-container {
  position: fixed;
  background: linear-gradient(transparent, var(--bg-primary) 30%);
  z-index: 100;
  padding: 16px;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn {
  display: inline-flex;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  padding: 16px 24px;
  transition: all .2s;
  font-size: 16px;
  font-weight: 600;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--accent-gradient);
  color: #fff;
}

.btn--primary:hover:not(:disabled) {
  opacity: .9;
  transform: translateY(-1px);
}

.btn--secondary {
  color: var(--text-primary);
  background: #383838;
  border: none;
}

.btn--secondary:hover:not(:disabled) {
  background: #454545;
}

.btn--ghost {
  color: var(--text-secondary);
  background: none;
}

.btn--ghost:hover:not(:disabled) {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 18px;
}

.btn--small {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
}

.delete-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.error-text {
  color: #ef4444;
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
}

.calendar {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-lg);
  padding: 16px;
}

.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 16px;
}

.calendar__month {
  font-size: 18px;
  font-weight: 600;
}

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__weekday {
  text-align: center;
  color: var(--text-muted);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.calendar__day {
  aspect-ratio: 1;
  display: flex;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  background: var(--bg-card);
  justify-content: center;
  align-items:  center;
  transition: all .2s;
  font-size: 15px;
}

.calendar__day:hover {
  background: var(--accent-primary);
  color: #fff;
}

.calendar__day--empty {
  cursor: default;
  background: none;
}

.calendar__day--empty:hover {
  background: none;
}

.calendar__day--today {
  color: var(--warning);
  font-weight: 700;
}

.calendar__day--selected {
  background: var(--accent-primary);
  color: #fff;
}

.calendar__day--disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar__day--disabled:hover {
  background: var(--bg-card);
}

.time-picker-container {
  display: flex;
  justify-content: center;
}

.custom-time-picker {
  margin-top: 16px;
}

.scroll-picker {
  display: flex;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-lg);
  justify-content: center;
  align-items:  center;
  gap: 16px;
  padding: 20px;
}

.scroll-picker__col {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: 8px;
}

.scroll-picker__label {
  color: var(--text-muted);
  font-size: 14px;
}

.scroll-column {
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  height: 120px;
}

.scroll-column::-webkit-scrollbar {
  display: none;
}

.scroll-column__item {
  display: flex;
  color: var(--text-muted);
  scroll-snap-align: center;
  cursor: pointer;
  justify-content: center;
  align-items:  center;
  height: 40px;
  transition: all .2s;
  font-size: 24px;
}

.scroll-column__item--selected {
  color: var(--text-primary);
  font-size: 32px;
  font-weight: 600;
}

.scroll-column__item--disabled {
  opacity: .25;
  cursor: not-allowed;
  pointer-events: none;
}

.time-warning {
  border-radius: var(--border-radius-sm);
  color: var(--error);
  text-align: center;
  background: #ef444426;
  margin-top: 12px;
  padding: 8px 12px;
  font-size: 13px;
}

.today-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.today-post {
  display: flex;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius);
  gap: 12px;
  padding: 12px;
}

.today-post__time {
  color: var(--text-primary);
  flex-shrink: 0;
  font-weight: 600;
}

.today-post__text {
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confirmation {
  text-align: center;
}

.confirmation__emoji {
  margin-bottom: 24px;
  font-size: 80px;
}

.confirmation__title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.confirmation__date {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 15px;
}

.confirmation__channel {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 14px;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.preview-card__image {
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 300px;
}

.preview-card__media-placeholder {
  display: flex;
  background: #ffffff08;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  padding: 40px 16px;
}

.preview-card__media-placeholder--video {
  background: #ffffff0a;
  padding: 48px 16px;
}

.preview-card__play-icon {
  color: #ffffff73;
  width: 48px;
  height: 48px;
}

.preview-card__media-icon {
  font-size: 48px;
}

.preview-card__media-label {
  color: var(--text-muted);
  font-size: 14px;
}

.preview-card__text {
  color: var(--text-primary);
  white-space: pre-wrap;
  text-align: left;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.preview-card__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 16px;
}

.preview-card__btn-row {
  display: flex;
  gap: 8px;
}

.preview-card__btn-row .preview-card__btn {
  flex: 1;
  min-width: 0;
}

.preview-card__btn {
  display: block;
  text-align: center;
  border-radius: var(--border-radius);
  color: var(--text-primary);
  text-decoration: none;
  background: #ffffff0f;
  padding: 12px;
  transition: background .2s;
  font-size: 14px;
}

.preview-card__btn:hover {
  background: #ffffff1a;
}

.preview-card__btn--disabled {
  opacity: .7;
  cursor: default;
  pointer-events: none;
}

.checkbox {
  display: flex;
  cursor: pointer;
  align-items:  center;
  gap: 12px;
  padding: 16px;
  font-size: 15px;
}

.checkbox input {
  accent-color: var(--accent-primary);
  width: 20px;
  height: 20px;
}

.success {
  text-align: center;
}

.success__emoji {
  margin-bottom: 24px;
  font-size: 100px;
}

.success__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
}

.success__text {
  color: var(--text-secondary);
  max-width: 300px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.modal-overlay {
  position: fixed;
  background: var(--bg-overlay);
  display: flex;
  z-index: 1000;
  animation: fadeIn .2s ease;
  justify-content: center;
  align-items:  flex-end;
  inset: 0;
}

.modal {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  overflow-y: auto;
  text-align: center;
  animation: slideUp .3s ease;
  width: 100%;
  max-width: 420px;
  max-height: 80vh;
  padding: 24px;
}

.modal--full {
  text-align: left;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  max-height: 90vh;
}

.modal__close {
  position: absolute;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  top: 16px;
  right: 16px;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 16px;
}

.modal__header h3 {
  font-size: 18px;
  font-weight: 600;
}

.modal__content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-height: 0;
  margin-bottom: 16px;
}

.modal--full .modal__content {
  margin-right: -20px;
  padding-right: 20px;
}

.modal__emoji {
  margin-bottom: 16px;
  font-size: 80px;
}

.modal__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.modal__text {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.publish-choice-overlay {
  position: fixed;
  background: var(--bg-overlay);
  display: flex;
  z-index: 1000;
  animation: fadeIn .2s ease;
  justify-content: center;
  align-items:  center;
  padding: 24px;
  inset: 0;
}

.publish-choice {
  text-align: center;
  box-shadow: var(--shadow-lg);
  background: #2b2b35;
  border: 1px solid #ffffff0f;
  border-radius: 24px;
  width: 100%;
  max-width: 320px;
  padding: 20px;
}

.publish-choice__text {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.publish-choice__error {
  color: var(--error);
  margin-bottom: 12px;
  font-size: 12px;
}

.publish-choice__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.publish-choice__btn {
  color: var(--text-primary);
  cursor: pointer;
  background: #3b3b3b;
  border: none;
  border-radius: 14px;
  width: 100%;
  padding: 14px 16px;
  transition: all .2s;
  font-size: 16px;
  font-weight: 600;
}

.publish-choice__btn--primary {
  background: #4a4a4a;
}

.publish-choice__btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.publish-choice__btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.loading {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items:  center;
  padding: 40px;
}

.spinner {
  border: 3px solid var(--border-color);
  border-top-color: var(--accent-primary);
  animation: spin 1s linear infinite;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-state {
  display: flex;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items:  center;
  padding: 40px 20px;
}

.error-state__icon {
  margin-bottom: 16px;
  font-size: 48px;
}

.error-state h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.error-state p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.error-message {
  border-radius: var(--border-radius);
  color: var(--error);
  background: #ef44441a;
  margin-bottom: 16px;
  padding: 12px 16px;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn .3s ease-out;
}

.observer {
  overflow-y: auto;
  height: 100%;
  padding: 24px 16px;
}

.observer__header {
  text-align: center;
  margin-bottom: 24px;
}

.observer__logo {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  margin-bottom: 16px;
}

.observer__logo-icon {
  font-size: 28px;
}

.observer__logo-text {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
}

.observer__title {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.observer__date {
  color: var(--text-secondary);
  font-size: 14px;
}

.observer__stats {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  margin-bottom: 12px;
  padding: 20px 8px;
}

.observer__stat {
  text-align: center;
  flex: 1;
}

.observer__stat-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.observer__stat-label {
  display: block;
  color: var(--text-secondary);
  margin-top: 6px;
  font-size: 11px;
}

.observer__frozen {
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border-radius: 8px;
  margin-top: 12px;
  margin-bottom: 8px;
  padding: 8px 12px;
  font-size: 13px;
}

.observer__refresh {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.observer__refresh-time {
  color: var(--text-secondary);
  font-size: 14px;
}

.observer__refresh-btn {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
  padding: 0;
  transition: all .2s;
  font-size: 16px;
  line-height: 1;
}

.observer__refresh-btn:active {
  background: var(--bg-tertiary);
}

.observer__refresh-btn:disabled {
  opacity: .5;
  cursor: default;
}

.observer__refresh-btn--spinning {
  animation: spin .8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.observer__credit {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 13px;
}

.observer__credit-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 500;
}

.observer__preview-header {
  display: flex;
  color: var(--text-secondary);
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 12px;
  font-size: 14px;
}

.observer .preview-card {
  margin-bottom: 28px;
}

.observer__channels {
  margin-bottom: 24px;
}

.observer__channels-title {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 14px;
}

.observer__channel {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  flex-direction: row;
  align-items:  center;
  gap: 16px;
  margin-bottom: 8px;
  padding: 14px 16px;
}

.observer__channel-avatar {
  background: var(--accent-gradient);
  display: flex;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 56px;
  height: 56px;
  font-size: 22px;
}

.observer__channel-avatar--image {
  object-fit: cover;
  background: none;
}

.observer__channel-info {
  flex: 1;
  min-width: 0;
}

.observer__channel-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

.observer__channel-note {
  color: var(--text-secondary);
  margin-top: 2px;
  font-size: 12px;
}

.observer__channel-status {
  color: var(--text-secondary);
  white-space: nowrap;
  background: #ffffff0a;
  border: 1px solid;
  border-radius: 999px;
  flex-shrink: 0;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.observer__channel-status--scheduled {
  color: var(--accent-primary);
  background: #9d47c51f;
  border-color: #9d47c580;
}

.observer__channel-status--published {
  color: var(--success);
  background: #10b9811f;
  border-color: #10b98173;
}

.observer__channel-status--cancelled {
  color: var(--warning);
  background: #f59e0b1f;
  border-color: #f59e0b73;
}

.observer__channel-status--deleted {
  color: var(--error);
  background: #ef444424;
  border-color: #ef444480;
}

.observer__channel-status--partially_deleted {
  color: var(--text-primary);
  background: #ffffff14;
  border-color: #ffffff59;
}

.observer__channel--deleted {
  background: linear-gradient(90deg, #ef44441f, #ef444405);
  border-color: #ef444499;
}
