/* ─── Mail inbox (#715) ──────────────────────────────────── */

.mail-account-item {
  transition: background 0.15s ease;
  border-left: 2px solid transparent;
}

.mail-account-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04);
}

.mail-account-item.active {
  background: rgba(255, 106, 18, 0.12);
  border-left-color: #ff6a12;
}

.mail-folder-item {
  transition: background 0.15s ease;
  border-left: 2px solid transparent;
}

.mail-folder-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04);
}

.mail-folder-item.active {
  background: rgba(20, 184, 166, 0.10);
  border-left-color: #14b8a6;
}

.mail-input {
  width: 100%;
  background: #131517;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.15s ease;
}

.mail-input:focus {
  border-color: #ff6a12;
}

.mail-msg-row:hover .text-white {
  color: #fff;
}

.mail-msg-actions {
  background: rgba(26, 28, 32, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 2px;
}

.mail-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 0.375rem;
  color: #9ca3af;
  transition: all 0.15s ease;
}

.mail-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

.mail-action-btn.mail-action-danger:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.mail-detail-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.15s ease;
}

.mail-detail-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

.mail-detail-action-btn.mail-action-danger:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.mail-attachment-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mail-attachment-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 154, 68, 0.25);
}

.mail-body-html a {
  color: #ff9a44;
  text-decoration: underline;
}

.mail-body-html img {
  max-width: 100%;
  height: auto;
}

.mail-body-plain {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
}
