﻿@charset "UTF-8";

.inbox-chat-item {
  display: flex;
  width: 100%;
  align-items: center;
}

.inbox-chat-item:hover .inbox-chat-action {
  opacity: 1;
}

.inbox-chat-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
  opacity: 0;
  transition: all linear 0.2s;
}

.inbox-chat-action a {
  width: 32px;
  height: 32px;
  background: #f0f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0px 6px;
  font-size: 12px;
  color: #aaaaaa;
  transition: all linear 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.inbox-chat-action a:hover {
  color: #088abd;
  background: #e4e6eb;
}

.reply-bubble {
  background: #f1f3f5;
  border-left: 3px solid #25d366;
  padding: 6px 10px;
  margin-bottom: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  border-radius: 4px;
}

.reply-bubble strong {
  display: block;
  margin-bottom: 2px;
}

.reply-preview {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-left: 4px solid #088abd;
  border-radius: 4px;
  position: relative;
}

.reply-preview .reply-content {
  flex-grow: 1;
}

.reply-preview p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.reply-preview button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #999;
}

.reply-preview button:hover {
  color: #333;
}