#gloap_paste_panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  width: 280px;
  box-sizing: border-box;
  padding: 13px 14px 14px;
  border: 1px solid rgba(15, 47, 70, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  color: #102f45;
  box-shadow: 0 16px 42px rgba(15, 47, 70, 0.22);
  font-family: Arial, sans-serif;
}
.gloap-paste-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
#gloap_paste_text {
  display: block;
  width: 100%;
  min-height: 64px;
  box-sizing: border-box;
  resize: vertical;
  border: 1px solid rgba(15, 47, 70, 0.2);
  border-radius: 7px;
  background: #fff;
  color: #102f45;
  font: 13px/1.35 Arial, sans-serif;
  padding: 8px 9px;
}
.gloap-paste-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 9px;
}
.gloap-paste-actions button {
  min-height: 28px;
  border: 0;
  border-radius: 6px;
  background: #0f6f93;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
}
.gloap-paste-actions button:last-child {
  background: #778793;
}
.gloap-paste-status {
  min-height: 16px;
  margin-top: 7px;
  color: #0f6f93;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}
.gloap-paste-status.is-error {
  color: #b53a36;
}
