/* Compact inbox: recognizable channels and one clear owner line. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.channel-icon { display: block; width: 20px; height: 20px; flex-shrink: 0; }
.compact-inbox .channel-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}
.compact-inbox .channel-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f6f8f5;
}
.compact-inbox .channel-filter.whatsapp, .channel-badge.whatsapp { color: #198553; }
.compact-inbox .channel-filter.instagram, .channel-badge.instagram { color: #ba4678; }
.compact-inbox .channel-filter.facebook, .channel-badge.facebook { color: #2873ce; }
.compact-inbox .channel-filter:hover { background: #eef2eb; border-color: #d4dfd0; }
.compact-inbox .channel-filter.active { border-color: #6b926f; background: #e9f2e4; box-shadow: inset 0 0 0 1px #6b926f; }
.compact-inbox .channel-filter.all-channels { font-size: 11px; font-weight: 600; }
.customer-avatar { display: inline-flex; position: relative; flex-shrink: 0; }
.customer-avatar .avatar { width: 36px; height: 36px; border-radius: 11px; }
.channel-badge {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #fff;
}
.channel-badge .channel-icon { width: 15px; height: 15px; }
.compact-inbox .chat-row { padding: 13px 15px; gap: 13px; }
.compact-inbox .row-name { font-size: 12px; line-height: 18px; }
.compact-inbox .row-name time { font-size: 10px; }
.compact-inbox .preview { margin: 5px 0 8px; font-size: 11px; line-height: 16px; }
.compact-inbox .preview-type { color: #8a6a37; font-weight: 550; }
.compact-inbox .chat-meta { min-height: 20px; gap: 5px; }
.compact-inbox .chat-assignee { margin: 0; min-width: 0; gap: 5px; font-size: 10px; }
.compact-inbox .chat-assignee strong { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compact-inbox .assignee-initials { width: 18px; height: 18px; }
.compact-inbox .tag { padding: 3px 5px; font-size: 9px; flex-shrink: 0; }
.compact-inbox .chat-header > .customer-avatar { margin-right: 3px; }
@media (min-width: 1600px) {
  .compact-inbox .row-name { font-size: 13px; }
  .compact-inbox .preview { font-size: 12px; }
  .compact-inbox .chat-assignee { font-size: 11px; }
}
@media (max-width: 650px) {
  .compact-inbox .channel-filter { min-height: 42px; }
  .compact-inbox .row-name { font-size: 13px; }
  .compact-inbox .chat-row { padding: 12px 15px; }
}
