/* ─── 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-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-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;
}
