:root {
  color-scheme: dark;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN',
    Meiryo, Roboto, sans-serif;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Toast */
.cd-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: #1e293b;
  color: #f1f5f9;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #334155;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s ease;
  z-index: 9999;
}
.cd-toast-show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.cd-toast-error {
  background: #7f1d1d;
  border-color: #b91c1c;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}

.queue-item {
  transition: background 0.15s;
}

#clip-frame {
  border: 0;
}
