/* Discord-like Embed Preview Styles */
.preview-embed {
  position: relative;
  max-width: 520px;
  margin: 8px 0;
  padding: 8px 16px 16px;
  background-color: #2f3136;
  border-radius: 4px;
  border-left: 4px solid #1e88e5;
  color: #dcddde;
  font-family: 'Whitney', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

.preview-embed-title {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.embed-description {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  white-space: pre-line;
}

.preview-image-container {
  margin-top: 16px;
  max-width: 100%;
}

.preview-image-container img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 4px;
}

.preview-embed-footer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #72767d;
}

.preview-embed-footer-icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.preview-embed-footer-text {
  font-size: 12px;
}

.preview-embed-author {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.preview-embed-author-icon {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.preview-embed-author-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.preview-embed-thumbnail {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
}

/* Discord Bot UI */
.discord-bot-ui {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 0;
}

.discord-bot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
}

.discord-bot-name {
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.discord-bot-timestamp {
  font-size: 12px;
  color: #72767d;
}
