/* SAF Mail - CRM (contacts + lists) shared styles. Inherits twopane base
   from saf-mail-senders.css; this file adds the CRM-specific bits. */

.saf-mail-twopane {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 12px;
  margin-top: 12px;
  min-height: 60vh;
}

.saf-mail-twopane__list,
.saf-mail-twopane__detail {
  background: #fff;
  border: 1px solid #dcdcde;
  border-radius: 6px;
  padding: 8px;
  overflow: auto;
}

.saf-mail-twopane__list {
  max-height: 80vh;
}

.saf-mail-list-meta {
  padding: 6px 8px 8px;
  border-bottom: 1px solid #f0f0f1;
  margin-bottom: 6px;
  color: #50575e;
  font-size: 13px;
}

.saf-mail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.saf-mail-list__item {
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f1;
}
.saf-mail-list__item:hover {
  background: #f6f7f7;
}
.saf-mail-list__item.is-active {
  background: #2271b110;
  outline: 2px solid #2271b150;
}
.saf-mail-list__item.is-archived {
  opacity: 0.55;
}
.saf-mail-list__line1 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.saf-mail-list__line2,
.saf-mail-list__line3 {
  font-size: 12px;
  color: #50575e;
  margin-top: 2px;
}

.saf-mail-empty {
  padding: 32px;
  text-align: center;
  color: #50575e;
}

.saf-mail-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f0f0f1;
  color: #50575e;
}
.saf-mail-pill--ok {
  background: #cdeed8;
  color: #00692a;
}
.saf-mail-pill--bad {
  background: #fbd3d3;
  color: #b32d2e;
}
.saf-mail-pill--muted {
  background: #f0f0f1;
  color: #50575e;
}

.saf-mail-form {
  padding: 12px;
}
.saf-mail-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f1;
}
.saf-mail-form__header h2 {
  margin: 0;
  font-size: 18px;
}
.saf-mail-form__header-actions {
  display: flex;
  gap: 6px;
}
.saf-mail-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.saf-mail-form__row label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
.saf-mail-form__row label.saf-mail-form__label-full {
  grid-column: 1 / -1;
}
.saf-mail-form__row input,
.saf-mail-form__row select,
.saf-mail-form__row textarea {
  width: 100%;
  padding: 6px 8px;
  font-size: 13px;
}
.saf-mail-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f1;
}
.saf-mail-form__msg {
  font-size: 13px;
}
.saf-mail-form__msg.is-error {
  color: #b32d2e;
}
.saf-mail-form__msg.is-success {
  color: #007017;
}

.saf-mail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 12px;
  min-height: 30px;
}
.saf-mail-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #2271b115;
  color: #1a4b7a;
  border-radius: 999px;
  font-size: 12px;
}
.saf-mail-chip__remove {
  background: none;
  border: none;
  color: #1a4b7a;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0 2px;
}
.saf-mail-chip__remove:hover {
  color: #b32d2e;
}

.saf-mail-form__lists {
  margin: 14px 0 4px;
  padding: 12px;
  background: #fafafa;
  border-radius: 6px;
}

.saf-mail-company-picker {
  position: relative;
}
.saf-mail-company-picker__pop {
  position: absolute;
  z-index: 50;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow: auto;
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.saf-mail-company-picker__option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 6px 10px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #f0f0f1;
  font-size: 13px;
  cursor: pointer;
}
.saf-mail-company-picker__option:hover,
.saf-mail-company-picker__option:focus {
  background: #f6f7f7;
  outline: none;
}
.saf-mail-company-picker__option.is-create {
  color: #2271b1;
  font-weight: 500;
}
.saf-mail-company-picker__empty {
  padding: 8px 10px;
  font-size: 12px;
  color: #50575e;
  border-bottom: 1px solid #f0f0f1;
}

.saf-mail-contacts-filter {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  align-items: center;
}
.saf-mail-contacts-filter input[type="search"] {
  flex: 1 1 280px;
  min-width: 240px;
  padding: 6px 10px;
}

.saf-mail-list-detail {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}
.saf-mail-list-members {
  padding: 12px;
  border-top: 1px solid #f0f0f1;
}
.saf-mail-list-members h3 {
  margin: 0 0 10px;
}
.saf-mail-list-members__bulk {
  margin-bottom: 14px;
  padding: 10px;
  background: #fafafa;
  border-radius: 6px;
}
.saf-mail-list-members__bulk textarea {
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}
.saf-mail-members {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 40vh;
  overflow: auto;
}
.saf-mail-members__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-bottom: 1px solid #f0f0f1;
  font-size: 13px;
}
.saf-mail-members__email {
  color: #50575e;
  font-size: 12px;
  flex: 1;
}
