.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.search-dropdown li {
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.search-dropdown li:hover {
  background-color: #f5f5f5;
}

.search-dropdown.show {
  display: block;
}

/*# sourceMappingURL=custom.min.css.map */
.telegram-editor {
  position: relative;
}

.telegram-editor textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 200px;
  font-family: monospace;
}

.toolbar {
  margin-top: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.toolbar button {
  padding: 5px 10px;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
}

.toolbar button:hover {
  background: #e0e0e0;
}

.telegram-preview {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
}

.telegram-message {
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 100%;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.telegram-message pre {
  background: #f0f2f5;
  padding: 10px;
  border-radius: 5px;
  overflow-x: auto;
}

.telegram-message code {
  background: #f0f2f5;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
}

.telegram-message .tg-spoiler {
  background: #000;
  color: #000;
  cursor: pointer;
  transition: color 0.3s;
}

.telegram-message .tg-spoiler:hover {
  color: #fff;
}

.telegram-message a {
  color: #0088cc;
  text-decoration: none;
}

.telegram-message a:hover {
  text-decoration: underline;
}
