.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-main);
  font-size: 14px;
  line-height: 1;
  transition: all 200ms ease-in-out;
}

.btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn:disabled,
.btn.is-disabled {
  cursor: not-allowed;
  border-color: var(--color-border);
  background: #F3F4F6;
  color: var(--color-text-weak);
}

.btn--primary {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--secondary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary-light);
}

.btn--text {
  border-color: transparent;
  background: transparent;
  color: var(--color-primary);
}

.btn--text:hover {
  background: var(--color-primary-light);
}

.btn--danger {
  border-color: var(--color-danger);
  background: var(--color-danger);
  color: var(--color-white);
}

.btn--danger:hover {
  border-color: #CF1322;
  background: #CF1322;
  color: var(--color-white);
}

.btn--large {
  height: 40px;
  padding: 0 20px;
}

.btn--small {
  height: 24px;
  padding: 0 12px;
  font-size: 12px;
}

.btn-split {
  display: inline-flex;
  align-items: stretch;
  position: relative;
}

.btn-split__main {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-split__dropdown {
  position: relative;
}

.btn-split__toggle {
  min-width: 24px;
  padding: 0 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-split__chevron {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
}

.btn-split__menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 30;
  min-width: 148px;
  padding: 4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-md, 0 8px 24px rgba(15, 23, 42, 0.12));
}

.btn-split__menu-item {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text-main);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.btn-split__menu-item:hover {
  background: var(--color-bg-muted);
}

.btn-split__dropdown.is-open .btn-split__toggle {
  filter: brightness(0.95);
}

.publish-all-modal__lead {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-main);
}

.publish-all-modal__list {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.publish-all-modal__stats {
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-muted);
  font-size: 13px;
  color: var(--color-text-main);
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-main);
  transition: border-color 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.input,
.select {
  height: 32px;
  padding: 0 12px;
}

.input--large {
  height: 40px;
}

.textarea {
  min-height: 96px;
  padding: 8px 12px;
  resize: vertical;
}

.input:hover,
.select:hover,
.textarea:hover {
  border-color: var(--color-primary);
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 103, 218, 0.12);
}

.input:disabled,
.select:disabled,
.textarea:disabled {
  cursor: not-allowed;
  background: #F3F4F6;
  color: var(--color-text-weak);
}

.input.is-error,
.select.is-error,
.textarea.is-error {
  border-color: var(--color-danger);
}

.card {
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
}

.card--clickable {
  transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.card--clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

.table th,
.table td {
  border-bottom: 1px solid var(--color-border);
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
}

.table th {
  background: #F3F4F6;
  color: var(--color-text-main);
  font-weight: 600;
}

.table tr:hover td {
  background: #F9FAFB;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #F3F4F6;
  color: var(--color-text-secondary);
  font-size: 12px;
}

.tag--primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.tag--success {
  background: #F6FFED;
  color: var(--color-success);
}

.tag--warning {
  background: #FFFBE6;
  color: var(--color-warning);
}

.tag--danger {
  background: #FFF1F0;
  color: var(--color-danger);
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.page-header__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.empty-state {
  padding: var(--space-xxl) var(--space-lg);
  color: var(--color-text-secondary);
  text-align: center;
}

.rte {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: auto;
  height: auto;
}

.editor-toolbar-sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--color-white);
  padding: 8px 0;
  flex-shrink: 0;
}

.rte__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  flex-shrink: 0;
}

.rte__btn {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-main);
  font-size: 13px;
  cursor: pointer;
}

.rte__btn--text-label {
  min-width: 44px;
  padding: 0 10px;
  font-size: 12px;
}

.rte__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.rte__separator {
  width: 1px;
  height: 24px;
  margin: 4px 4px;
  background: var(--color-border);
}

.rte__color-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.rte__color-label {
  min-width: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: center;
}

.rte__color-input {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  cursor: pointer;
}

.rte__color-input:hover {
  border-color: var(--color-primary);
}

.rte__font-size-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.rte__font-size-input {
  width: 64px;
  height: 32px;
  padding: 0 4px 0 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-main);
  font-size: 13px;
  -moz-appearance: auto;
  appearance: auto;
}

.rte__font-size-picker {
  position: relative;
  display: inline-flex;
}

.rte__font-size-trigger {
  height: 32px;
  min-width: 64px;
  padding: 0 24px 0 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-main);
  font-size: 13px;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.rte__font-size-trigger::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-text-secondary);
  transform: translateY(-25%);
}

.rte__font-size-trigger:hover,
.rte__font-size-input:hover {
  border-color: var(--color-primary);
}

.rte__font-size-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 30;
  min-width: 100%;
  max-height: 240px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  overflow: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.rte__font-size-menu.hidden {
  display: none;
}

.rte__font-size-menu-item {
  padding: 6px 12px;
  font-size: 13px;
  color: var(--color-text-main);
  cursor: pointer;
  white-space: nowrap;
}

.rte__font-size-menu-item:hover {
  background: rgba(14, 103, 218, 0.06);
  color: var(--color-primary);
}

.rte__font-size-menu-item--custom {
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}


.rte__font-size-input:focus,
.rte__font-size-trigger:focus {
  outline: none;
  border-color: var(--color-primary);
}

.rte__btn--active {
  border-color: var(--color-primary);
  background: #eef2ff;
  color: var(--color-primary);
}

.rte__format-paint {
  cursor: copy;
}

.rte__body {
  flex: 1 0 auto;
  padding: 24px;
  outline: none;
  line-height: 1.7;
  font-size: 15px;
  font-family: var(--font-family-base);
}

.rte__body * {
  font-family: inherit !important;
}

.rte__body pre,
.rte__body code,
.rte__body kbd,
.rte__body samp {
  font-family: var(--font-family-code) !important;
}

.rte__body pre * {
  font-family: inherit !important;
}

.rte__body h1,
.rte__body h2,
.rte__body h3,
.rte__body h4 {
  margin: 1em 0 0.5em;
  line-height: 1.3;
}

.rte__body blockquote {
  margin: 1em 0;
  padding: 8px 16px;
  border-left: 4px solid var(--color-border);
  background: var(--color-bg-muted);
}

.rte__body pre {
  margin: 1em 0;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #1f2937;
  color: #f9fafb;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.rte__body pre code {
  white-space: inherit;
  word-break: inherit;
}

.rte__body table,
.rte__body .rte-table,
.article-content table,
.article-content .rte-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  table-layout: fixed;
}

.rte__body td,
.rte__body th,
.article-content td,
.article-content th {
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  vertical-align: middle;
  min-width: 48px;
  word-break: break-word;
}

.rte__body td ol,
.rte__body td ul,
.rte__body th ol,
.rte__body th ul,
.article-content td ol,
.article-content td ul,
.article-content th ol,
.article-content th ul {
  margin: 0.35em 0;
  padding-left: 1.5em;
  list-style-position: outside;
}

.rte__body td ol,
.rte__body th ol,
.article-content td ol,
.article-content th ol {
  list-style-type: decimal;
}

.rte__body td ul,
.rte__body th ul,
.article-content td ul,
.article-content th ul {
  list-style-type: disc;
}

.rte__body td li,
.rte__body th li,
.article-content td li,
.article-content th li {
  margin: 0.15em 0;
}

.rte__body thead th,
.rte__body .rte-table[data-has-header="true"] thead th,
.article-content thead th,
.article-content .rte-table[data-has-header="true"] thead th {
  background: var(--color-bg-muted, #F3F4F6);
  font-weight: 600;
}

.rte__body .rte-table__cell--active,
.article-content .rte-table__cell--active {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.rte__body .rte-table__cell--selected,
.article-content .rte-table__cell--selected {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
  box-shadow: inset 0 0 0 9999px rgba(37, 99, 235, 0.1);
}

.rte__body .rte-table__cell--selected.rte-table__cell--active,
.article-content .rte-table__cell--selected.rte-table__cell--active {
  box-shadow: inset 0 0 0 9999px rgba(37, 99, 235, 0.1);
}

.rte__table-wrap {
  position: relative;
}

.rte-table-picker {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  width: 196px;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-modal);
}

.rte-table-picker__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-bottom: var(--space-sm);
}

.rte-table-picker__cell {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-white);
  cursor: pointer;
}

.rte-table-picker__cell.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.rte-table-picker__label {
  margin-bottom: var(--space-sm);
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
}

.rte-table-picker__custom {
  width: 100%;
  padding: 4px 0;
  border: none;
  background: transparent;
  color: var(--color-primary);
  font-size: 13px;
  cursor: pointer;
}

.rte-table-picker__custom-form {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
}

.rte-table-picker__input {
  width: 52px;
  min-width: 0;
  padding: 4px 6px;
}

.rte-table-menu {
  position: absolute;
  z-index: 30;
  min-width: 160px;
  padding: var(--space-xs) 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-modal);
}

.rte-table-menu__item {
  display: block;
  width: 100%;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--color-text-main);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.rte-table-menu__item:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.rte-table-toolbar {
  position: absolute;
  z-index: 25;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: calc(100% - 16px);
  padding: 4px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.rte-table-toolbar__btn {
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text-main);
  font-size: 12px;
  cursor: pointer;
}

.rte-table-toolbar__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.rte-table-toolbar__sep {
  width: 1px;
  height: 20px;
  margin: 2px 2px;
  background: var(--color-border);
  align-self: center;
}

.rte-table-toolbar__color {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 0 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--color-text-main);
  cursor: pointer;
}

.rte-table-toolbar__color input[type="color"] {
  width: 22px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.rte-table-resize-layer {
  position: absolute;
  z-index: 15;
  pointer-events: none;
}

.rte-table-resize-handle {
  position: absolute;
  pointer-events: auto;
  z-index: 16;
}

.rte-table-resize-handle--col {
  width: 6px;
  cursor: col-resize;
}

.rte-table-resize-handle--col:hover {
  background: rgba(37, 99, 235, 0.25);
}

.rte-table-resize-handle--row {
  height: 6px;
  cursor: row-resize;
}

.rte-table-resize-handle--row:hover {
  background: rgba(37, 99, 235, 0.25);
}

.article-content img,
.rte__body img {
  max-width: min(100%, 960px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: top;
  margin: 10px 0;
}

.article-content img {
  cursor: zoom-in;
}

.rte__body img {
  cursor: zoom-in;
}

.rte__body .rte-image-wrap,
.article-content .rte-image-wrap {
  margin: 0;
}

.rte__body img.rte-image--selected {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.rte__body .rte-video,
.article-content .rte-video {
  margin: 1em auto;
  max-width: 100%;
  text-align: center;
}

.rte__body .rte-video {
  cursor: pointer;
}

.rte__body .rte-video video,
.article-content .rte-video video,
.rte__body video:not(.article-video-lightbox__video),
.article-content video:not(.article-video-lightbox__video) {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(600px, 80vh);
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;
}

.rte__body .rte-video video {
  pointer-events: none;
}

.article-content .rte-video,
.article-content video:not(.article-video-lightbox__video) {
  cursor: pointer;
}

.article-content {
  max-width: 100%;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  font-family: var(--font-family-base);
}

.article-content * {
  font-family: inherit !important;
}

.article-content pre,
.article-content code,
.article-content kbd,
.article-content samp {
  font-family: var(--font-family-code) !important;
}

.article-content pre * {
  font-family: inherit !important;
}

.article-content pre {
  margin: 1em 0;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: #1f2937;
  color: #f9fafb;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: var(--font-family-code);
  font-size: 14px;
  line-height: 1.6;
}

.article-content pre code {
  display: block;
  white-space: inherit;
  word-break: inherit;
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  color: inherit;
  padding: 0;
  text-decoration: none;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  text-decoration: none;
}

.article-content pre,
.article-content pre * {
  text-decoration: none !important;
}

.article-image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.article-image-lightbox.is-visible {
  opacity: 1;
}

.article-image-lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.2s ease-out;
}

.article-image-lightbox.is-visible .article-image-lightbox__image {
  transform: scale(1);
}

.article-image-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.article-image-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.article-image-lightbox__close:focus {
  outline: none;
}

.article-image-lightbox__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.article-video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.article-video-lightbox.is-visible {
  opacity: 1;
}

.article-video-lightbox__figure {
  margin: 0;
  max-width: 90%;
  max-height: 90vh;
}

.article-video-lightbox__video {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #000000;
}

.article-video-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1;
}

.article-video-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.article-video-lightbox__close:focus {
  outline: none;
}

.article-video-lightbox__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.rte-video-modal__hint {
  margin: var(--space-sm) 0 0;
  font-size: 13px;
}

.rte__uploading {
  position: absolute;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.rte__uploading-text {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-size: 14px;
  box-shadow: var(--shadow-modal);
}

.kl-auto-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(90vw, 420px);
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--color-white);
  border: none;
  color: var(--color-text-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.kl-auto-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
}

.kl-auto-toast__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.kl-auto-toast__text {
  text-align: left;
}

.kl-auto-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.kl-paste-progress {
  position: fixed;
  top: 72px;
  left: 50%;
  z-index: 10001;
  max-width: min(90vw, 420px);
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  pointer-events: none;
}

.kl-paste-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
