.hashtag-suggest-wrap {
  position: relative;
}

.hashtag-suggest-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 4px);
  z-index: 30;
  display: flex;
  flex-direction: column;
  max-height: 180px;
  overflow: auto;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.hashtag-suggest-dropdown[hidden] {
  display: none !important;
}

.hashtag-suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
}

.hashtag-suggest-item:last-child {
  border-bottom: 0;
}

.hashtag-suggest-item:hover,
.hashtag-suggest-item.is-active {
  background: #f1f5f9;
}

.hashtag-suggest-item__tag {
  font-weight: 700;
  color: #2563eb;
}

.hashtag-suggest-item__meta {
  flex: 0 0 auto;
  font-size: 11px;
  color: #64748b;
}

.hashtag-suggest-dropdown--story-modal {
  border-color: #334155;
  background: #0f172a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hashtag-suggest-dropdown--story-modal .hashtag-suggest-item {
  border-bottom-color: rgba(51, 65, 85, 0.65);
  color: #f8fafc;
}

.hashtag-suggest-dropdown--story-modal .hashtag-suggest-item:hover,
.hashtag-suggest-dropdown--story-modal .hashtag-suggest-item.is-active {
  background: rgba(51, 65, 85, 0.45);
}

.hashtag-suggest-dropdown--story-modal .hashtag-suggest-item__tag {
  color: #93c5fd;
}

.hashtag-suggest-dropdown--story-modal .hashtag-suggest-item__meta {
  color: #94a3b8;
}

.story-text-edit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.story-text-edit[hidden] {
  display: none !important;
}

.story-text-edit__input {
  width: 100%;
  min-height: 56px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  resize: vertical;
}

.story-text-edit__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.story-text-edit__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.story-text-edit__btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}

.story-text-edit__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.story-text-edit__btn--save {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
}
