#scheduleDraftMount[hidden] {
  display: none;
}

.schedule-draft-status {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 5px 4px 9px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #f8fafc;
  color: #475569;
  white-space: nowrap;
}

.schedule-draft-status.has-draft {
  border-color: #f4b860;
  background: #fffaf0;
  color: #92400e;
}

.schedule-draft-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #94a3b8;
}

.schedule-draft-status.has-draft .schedule-draft-dot {
  background: #d97706;
}

.schedule-draft-copy {
  display: grid;
  line-height: 1.15;
}

.schedule-draft-copy strong {
  font-size: 12px;
  font-weight: 700;
}

.schedule-draft-copy small {
  margin-top: 2px;
  color: #64748b;
  font-size: 10px;
}

.schedule-draft-publish {
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid #2563eb;
  border-radius: 5px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.schedule-draft-publish:hover {
  background: #1d4ed8;
}

@media (max-width: 900px) {
  .schedule-draft-copy small {
    display: none;
  }
}
