.crx-slot.has-content {
  border-left-color: var(--slot-color, #f7cb45);
  background: #f8f7f2;
}

.crx-slot.has-content::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 9px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--crx-ink);
  border-radius: 2px;
  background: var(--slot-color, #f7cb45);
}

.crx-slot.has-content {
  position: relative;
}

.crx-slot.has-content.is-selected {
  border-left-color: var(--slot-color, #f7cb45);
  background: var(--crx-ink);
  box-shadow: inset 0 0 0 2px var(--slot-color, #f7cb45);
}

.crx-editor-preview > i,
.crx-colors label i {
  background: var(--editor-color, #f7cb45);
}

.crx-colors > div button {
  background: var(--choice-color, #f7cb45);
}

.crx-editor.is-empty {
  filter: saturate(.55);
}

.crx-editor :disabled {
  cursor: not-allowed;
  opacity: .52;
}

.crx-field small b {
  font: inherit;
}

.crx-empty-board,
.crx-loading,
.crx-auth-empty {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  background: #fbfaf6;
  text-align: center;
}

.crx-loading,
.crx-auth-empty {
  border: 2px solid var(--crx-ink, #1d1d1b);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--crx-ink, #1d1d1b);
}

.crx-loading span {
  width: 28px;
  height: 28px;
  border: 3px solid #d8d5cd;
  border-top-color: #1d1d1b;
  border-radius: 50%;
  animation: crx-spin .8s linear infinite;
}

.crx-empty-board span,
.crx-auth-empty span {
  color: #6e6b62;
  font-size: 10px;
}

.crx-auth-empty .dark-action {
  margin-top: 8px;
  text-decoration: none;
}

.crx-empty-today {
  display: flex !important;
  min-height: 160px !important;
  grid-template-columns: 1fr !important;
  align-items: center !important;
  justify-content: center;
  color: #6e6b62;
  text-align: center;
}

.crx-today-list > div > i {
  background: var(--slot-color, #fff);
}

.crx-today-list > div.done > i {
  background: var(--slot-color, #1d1d1b);
  filter: grayscale(1);
}

.crx-toast {
  position: fixed;
  z-index: 10000;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 32px));
  border: 2px solid #1d1d1b;
  border-radius: 7px;
  padding: 13px 16px;
  background: #fbfaf6;
  box-shadow: 4px 4px 0 #1d1d1b;
  font-size: 11px;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.crx-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.crx-toast[data-tone="success"] { background: #d9f2df; }
.crx-toast[data-tone="warning"] { background: #fff1bf; }
.crx-toast[data-tone="error"] { background: #ffd9d3; }

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

@media (max-width: 760px) {
  .crx-toast {
    right: 16px;
    bottom: 16px;
  }
}
