/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f7fb;
  color: #1f2937;
  overflow-x: hidden;
}

.app-shell {
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

.floating-navbar {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(340px, calc(100% - 32px));
  min-height: 62px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 20px 44px rgba(25, 28, 37, 0.14);
  padding: 8px;
   display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  z-index: 100;
}

.floating-navbar__item {
  min-height: 46px;
  border-radius: 18px;
  text-decoration: none;
  color: #4b5563;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.floating-navbar__item:hover {
  color: #111827;
}

.floating-navbar__item--active {
  color: #1f6feb;
  background: transparent;
  box-shadow: none;
}

.floating-navbar__item--active:hover {
  color: #175cd3;
}

.floating-navbar__item:active {
  transform: translateY(1px);
}

.floating-navbar__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-navbar__icon {
  font-size: 15px;
  line-height: 1;
}

.floating-navbar__badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  letter-spacing: -0.02em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.floating-navbar__item--active .floating-navbar__badge {
  background: #1f6feb;
}

.floating-navbar__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.floating-navbar__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #6366f1 0%, #7c3aed 100%);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.floating-navbar__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-navbar__item--active .floating-navbar__avatar {
  box-shadow: 0 0 0 2px rgba(31, 111, 235, 0.4);
}

.chatwoot-login {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
}

.chatwoot-login__logo-wrap {
  margin-bottom: 24px;
}

.chatwoot-login__logo {
  height: 42px;
  width: auto;
}

.chatwoot-login__flash {
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.chatwoot-login__flash--notice {
  margin-bottom: 0;
  border-radius: 0;
  background: #dcfce7;
  color: #166534;
}

.chatwoot-login__flash--alert {
  background: #fee2e2;
  color: #991b1b;
}

.chatwoot-login__form {
  text-align: left;
}

.chatwoot-login__field {
  margin-bottom: 14px;
}

.chatwoot-login__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

.chatwoot-login__input {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 16px;
  background: #fff;
}

.chatwoot-login__input:focus {
  outline: 2px solid #2563eb;
  outline-offset: 1px;
  border-color: #2563eb;
}

.chatwoot-login__submit {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: #1f6feb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.chatwoot-login__submit:hover {
  background: #1a5fd1;
}

@media (min-width: 768px) {
  .chatwoot-login {
    padding: 24px;
  }
}

.mock-conversations {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  background: #eff6ff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mock-conversations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  background: #fff;
  color: #111827;
  padding: 14px 12px 10px;
  border-bottom: 1px solid #e5e7eb;
}

.mock-conversations__header-title-wrap {
  min-width: 0;
}

.mock-conversations__eyebrow {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #6b7280;
}

.mock-conversations__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.mock-conversations__subtitle {
  margin: 2px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.mock-conversations__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mock-conversations__filter {
  position: relative;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
}

.mock-conversations__filter-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mock-conversations__filter-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-sizing: border-box;
  pointer-events: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.mock-conversations__filter:focus-visible {
  outline: 2px solid #1a5fd1;
  outline-offset: 2px;
}

.mock-conversations__filter--active {
  border-color: #1a5fd1;
  background: #eff6ff;
  color: #1a5fd1;
}

.conversation-filter__backdrop {
  z-index: 150;
}

.conversation-filter__sheet {
  z-index: 151;
}

.conversation-filter__form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.conversation-filter__actions {
  margin-top: 12px;
}

.conversation-filter__ddd-field {
  margin-top: 10px;
}

.conversation-filter__ddd-hint {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #6b7280;
}

.conversation-filter__status-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.conversation-filter__status-legend {
  margin-bottom: 8px;
}

.conversation-filter__status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.conversation-filter__status-chip {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.conversation-filter__status-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.conversation-filter__status-chip-face {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.conversation-filter__chip-check {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  color: inherit;
}

.conversation-filter__status-input:checked + .conversation-filter__status-chip-face .conversation-filter__chip-check,
.conversation-filter__priority-input:checked + .conversation-filter__priority-chip-face .conversation-filter__chip-check,
.conversation-filter__kanban-input:checked + .conversation-filter__kanban-chip-face .conversation-filter__chip-check {
  display: inline-flex;
}

.conversation-filter__chip-check-icon {
  display: block;
}

.conversation-filter__status-chip-face::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
  background: #98a2b3;
}

.conversation-filter__status-chip--any .conversation-filter__status-chip-face::before {
  background: #98a2b3;
}

.conversation-filter__status-chip--open .conversation-filter__status-chip-face::before {
  background: #98a2b3;
}

.conversation-filter__status-chip--pending .conversation-filter__status-chip-face::before {
  background: #eab308;
}

.conversation-filter__status-chip--snoozed .conversation-filter__status-chip-face::before {
  background: #f79009;
}

.conversation-filter__status-chip--resolved .conversation-filter__status-chip-face::before {
  background: #12b76a;
}

.conversation-filter__status-chip--any .conversation-filter__status-chip-face {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.conversation-filter__status-chip--open .conversation-filter__status-chip-face {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.conversation-filter__status-chip--pending .conversation-filter__status-chip-face {
  border-color: rgba(234, 179, 8, 0.35);
  background: #fefce8;
}

.conversation-filter__status-chip--snoozed .conversation-filter__status-chip-face {
  border-color: rgba(247, 144, 9, 0.4);
  background: #fffbeb;
}

.conversation-filter__status-chip--resolved .conversation-filter__status-chip-face {
  border-color: rgba(18, 183, 106, 0.35);
  background: #ecfdf3;
}

.conversation-filter__status-chip:hover .conversation-filter__status-chip-face {
  filter: brightness(0.98);
}

.conversation-filter__status-chip--any:hover .conversation-filter__status-chip-face,
.conversation-filter__status-chip--open:hover .conversation-filter__status-chip-face {
  border-color: #cbd5e1;
}

.conversation-filter__status-chip--pending:hover .conversation-filter__status-chip-face {
  border-color: rgba(234, 179, 8, 0.55);
}

.conversation-filter__status-chip--snoozed:hover .conversation-filter__status-chip-face {
  border-color: rgba(247, 144, 9, 0.55);
}

.conversation-filter__status-chip--resolved:hover .conversation-filter__status-chip-face {
  border-color: rgba(18, 183, 106, 0.5);
}

.conversation-filter__status-input:focus-visible + .conversation-filter__status-chip-face {
  outline: 2px solid #1a5fd1;
  outline-offset: 2px;
}

.conversation-filter__status-chip--any .conversation-filter__status-input:checked + .conversation-filter__status-chip-face,
.conversation-filter__status-chip--open .conversation-filter__status-input:checked + .conversation-filter__status-chip-face {
  border-color: #64748b;
  background: #f1f5f9;
  color: #1e293b;
  box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.2);
}

.conversation-filter__status-chip--pending .conversation-filter__status-input:checked + .conversation-filter__status-chip-face {
  border-color: #ca8a04;
  background: #fef9c3;
  color: #713f12;
  box-shadow: inset 0 0 0 1px rgba(202, 138, 4, 0.25);
}

.conversation-filter__status-chip--snoozed .conversation-filter__status-input:checked + .conversation-filter__status-chip-face {
  border-color: #ea580c;
  background: #ffedd5;
  color: #9a3412;
  box-shadow: inset 0 0 0 1px rgba(234, 88, 12, 0.22);
}

.conversation-filter__status-chip--resolved .conversation-filter__status-input:checked + .conversation-filter__status-chip-face {
  border-color: #12b76a;
  background: #d1fadf;
  color: #054f31;
  box-shadow: inset 0 0 0 1px rgba(18, 183, 106, 0.3);
}

.conversation-filter__priority-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.conversation-filter__priority-legend {
  margin-bottom: 8px;
}

.conversation-filter__priority-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.conversation-filter__priority-chip {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.conversation-filter__priority-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.conversation-filter__priority-chip-face {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.conversation-filter__priority-chip-face::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
  background: #98a2b3;
}

.conversation-filter__priority-chip--any .conversation-filter__priority-chip-face::before {
  background: #98a2b3;
}

.conversation-filter__priority-chip--none .conversation-filter__priority-chip-face::before {
  background: #6b7280;
}

.conversation-filter__priority-chip--low .conversation-filter__priority-chip-face::before {
  background: #1d4ed8;
}

.conversation-filter__priority-chip--medium .conversation-filter__priority-chip-face::before {
  background: #92400e;
}

.conversation-filter__priority-chip--urgent .conversation-filter__priority-chip-face::before {
  background: #991b1b;
}

.conversation-filter__priority-chip--any .conversation-filter__priority-chip-face {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.conversation-filter__priority-chip--none .conversation-filter__priority-chip-face {
  border-color: #d1d5db;
  background: #fff;
  color: #374151;
}

.conversation-filter__priority-chip--low .conversation-filter__priority-chip-face {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.conversation-filter__priority-chip--medium .conversation-filter__priority-chip-face {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e40af;
}

.conversation-filter__priority-chip--urgent .conversation-filter__priority-chip-face {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.conversation-filter__priority-chip:hover .conversation-filter__priority-chip-face {
  filter: brightness(0.98);
}

.conversation-filter__priority-chip--any:hover .conversation-filter__priority-chip-face {
  border-color: #cbd5e1;
}

.conversation-filter__priority-chip--none:hover .conversation-filter__priority-chip-face {
  border-color: #9ca3af;
}

.conversation-filter__priority-chip--low:hover .conversation-filter__priority-chip-face,
.conversation-filter__priority-chip--medium:hover .conversation-filter__priority-chip-face {
  border-color: #93c5fd;
}

.conversation-filter__priority-chip--urgent:hover .conversation-filter__priority-chip-face {
  border-color: #f87171;
}

.conversation-filter__priority-input:focus-visible + .conversation-filter__priority-chip-face {
  outline: 2px solid #1a5fd1;
  outline-offset: 2px;
}

.conversation-filter__priority-chip--any .conversation-filter__priority-input:checked + .conversation-filter__priority-chip-face {
  border-color: #64748b;
  background: #f1f5f9;
  color: #1e293b;
  box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.2);
}

.conversation-filter__priority-chip--none .conversation-filter__priority-input:checked + .conversation-filter__priority-chip-face {
  border-color: #4b5563;
  background: #f3f4f6;
  color: #111827;
  box-shadow: inset 0 0 0 1px rgba(75, 85, 99, 0.2);
}

.conversation-filter__priority-chip--low .conversation-filter__priority-input:checked + .conversation-filter__priority-chip-face {
  border-color: #1d4ed8;
  background: #dbeafe;
  color: #1e3a8a;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.25);
}

.conversation-filter__priority-chip--medium .conversation-filter__priority-input:checked + .conversation-filter__priority-chip-face {
  border-color: #1e40af;
  background: #bfdbfe;
  color: #1e3a8a;
  box-shadow: inset 0 0 0 1px rgba(30, 64, 175, 0.25);
}

.conversation-filter__priority-chip--urgent .conversation-filter__priority-input:checked + .conversation-filter__priority-chip-face {
  border-color: #991b1b;
  background: #fee2e2;
  color: #7f1d1d;
  box-shadow: inset 0 0 0 1px rgba(153, 27, 27, 0.3);
}

.conversation-filter__kanban-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.conversation-filter__kanban-legend {
  margin-bottom: 8px;
}

.conversation-filter__kanban-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.conversation-filter__kanban-chip {
  position: relative;
  cursor: pointer;
  margin: 0;
}

.conversation-filter__kanban-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.conversation-filter__kanban-chip-face {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.conversation-filter__kanban-chip-face::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
  background: #98a2b3;
}

.conversation-filter__kanban-chip--only .conversation-filter__kanban-chip-face::before {
  background: #7c3aed;
}

.conversation-filter__kanban-chip--any .conversation-filter__kanban-chip-face {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.conversation-filter__kanban-chip--only .conversation-filter__kanban-chip-face {
  border-color: rgba(124, 58, 237, 0.35);
  background: #f5f3ff;
  color: #5b21b6;
}

.conversation-filter__kanban-chip:hover .conversation-filter__kanban-chip-face {
  filter: brightness(0.98);
}

.conversation-filter__kanban-chip--any:hover .conversation-filter__kanban-chip-face {
  border-color: #cbd5e1;
}

.conversation-filter__kanban-chip--only:hover .conversation-filter__kanban-chip-face {
  border-color: rgba(124, 58, 237, 0.55);
}

.conversation-filter__kanban-input:focus-visible + .conversation-filter__kanban-chip-face {
  outline: 2px solid #1a5fd1;
  outline-offset: 2px;
}

.conversation-filter__kanban-chip--any .conversation-filter__kanban-input:checked + .conversation-filter__kanban-chip-face {
  border-color: #64748b;
  background: #f1f5f9;
  color: #1e293b;
  box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.2);
}

.conversation-filter__kanban-chip--only .conversation-filter__kanban-input:checked + .conversation-filter__kanban-chip-face {
  border-color: #7c3aed;
  background: #ede9fe;
  color: #4c1d95;
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.28);
}

.mock-conversations__logout {
  border: 0;
  background: #1a5fd1;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
}

.mock-conversations__list {
  display: block;
  background: #fff;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mock-conversations__list::-webkit-scrollbar {
  display: none;
}

.mock-conversations__tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.mock-conversations__tabs::-webkit-scrollbar {
  display: none;
}

.mock-conversations__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.mock-conversations__tab--active {
  background: #1a5fd1;
  color: #fff;
}

.mock-conversations__tab-count {
  font-weight: 700;
  font-size: 12px;
}

.mock-conversations__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #eef1f5;
  transition: background-color 0.2s ease;
}

.mock-conversations__card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.mock-conversations__card-link:active .mock-conversations__card {
  background: #f5f7fb;
}

.mock-conversations__card--unread .mock-conversations__contact {
  color: #111827;
  font-weight: 700;
}

.mock-conversations__card--unread .mock-conversations__message {
  color: #111827;
  font-weight: 500;
}

.mock-conversations__card--unread .mock-conversations__time {
  color: #128c7e;
  font-weight: 600;
}

.mock-conversations__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mock-conversations__row--top {
  margin-bottom: 2px;
}

.mock-conversations__row--bottom {
  align-items: flex-end;
}

.mock-conversations__content {
  width: 100%;
  min-width: 0;
}

.mock-conversations__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, #dbe7ff 0%, #c7d8ff 100%);
  color: #1e3a5f;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
}

.mock-conversations__avatar-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.mock-conversations__avatar-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

.mock-conversations__avatar-image--hidden {
  display: none;
}

.mock-conversations__contact-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.mock-conversations__contact {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.mock-conversations__kanban-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.mock-conversations__kanban-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-conversations__kanban-chip--funnel {
  background: #e2e8f0;
  color: #475569;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mock-conversations__kanban-chip--stage {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mock-conversations__message {
  margin: 0;
  color: #667085;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.mock-conversations__time {
  margin: 0 0 0 auto;
  color: #98a2b3;
  font-size: 11px;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.mock-conversations__meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 8px;
}

.mock-conversations__avatar-status {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #98a2b3;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
  z-index: 2;
}

.mock-conversations__avatar-status--open,
.mock-conversations__avatar-status--active,
.mock-conversations__avatar-status--aberta {
  background: #98a2b3;
}

.mock-conversations__avatar-status--pending,
.mock-conversations__avatar-status--pendente {
  background: #eab308;
}

.mock-conversations__avatar-status--snoozed,
.mock-conversations__avatar-status--adiada {
  background: #f79009;
}

.mock-conversations__avatar-status--resolved,
.mock-conversations__avatar-status--resolvido,
.mock-conversations__avatar-status--resolvida {
  background: #12b76a;
}

.mock-conversations__avatar-status--default {
  background: #98a2b3;
}

.mock-conversations__avatar-status--online {
  background: #22c55e;
}

.mock-conversations__avatar-status--offline {
  background: #98a2b3;
}

.mock-conversations__badge {
  background: #22c55e;
  color: #fff;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  padding: 0 6px;
}

.mock-conversations__empty {
  margin: 0;
  padding: 24px 12px;
  color: #6b7280;
  text-align: center;
  background: #fff;
}

.mock-conversations__loader {
  padding: 14px 12px 24px;
  text-align: center;
  color: #6b7280;
  font-size: 13px;
}

.mock-contacts {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  background: #eff6ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.mock-contacts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  background: #fff;
  color: #111827;
  padding: 14px 12px 10px;
  border-bottom: 1px solid #e5e7eb;
}

.mock-contacts__header-title-wrap {
  min-width: 0;
}

.mock-contacts__new-contact {
  position: relative;
}

.mock-contacts__new-contact > summary {
  list-style: none;
}

.mock-contacts__new-contact > summary::-webkit-details-marker {
  display: none;
}

.mock-contacts__new-contact-sheet {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(320px, calc(100vw - 24px));
  z-index: 10;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  padding: 10px;
}

.mock-contacts__new-contact-sheet .conversation-actions__drawer-label {
  margin-top: 8px;
}

.mock-contacts__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.mock-contacts__subtitle {
  margin: 2px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.mock-contacts__search-wrap {
  background: #fff;
  padding: 10px 12px 0;
}

.mock-contacts__list {
  display: block;
  background: #fff;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 86px;
}

.mock-contacts__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.mock-contacts__card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.mock-contacts__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d1d5db;
  color: #374151;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.mock-contacts__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-contacts__content {
  width: 100%;
  min-width: 0;
}

.mock-contacts__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mock-contacts__name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-contacts__status {
  font-size: 11px;
  text-transform: capitalize;
  color: #6b7280;
  flex-shrink: 0;
}

.mock-contacts__subtitle-text {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-contacts__empty {
  margin: 0;
  padding: 24px 12px;
  color: #6b7280;
  text-align: center;
}

.contact-show {
  width: 100%;
  max-width: 460px;
  min-height: 100vh;
  margin: 0 auto;
  background: #eff6ff;
  box-sizing: border-box;
  overflow-x: hidden;
}

.contact-show__header {
  background: #fff;
  color: #111827;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.contact-show__back {
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.contact-show__title {
  margin: 0;
  font-size: 18px;
}

.contact-show__body {
  padding: 12px;
  padding-bottom: 92px;
  display: grid;
  gap: 10px;
  box-sizing: border-box;
}

.contact-show__profile {
  background: #fff;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.contact-show__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #d1d5db;
  color: #374151;
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-show__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-show__name {
  margin: 0;
  font-size: 20px;
}

.contact-show__status {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 13px;
  text-transform: capitalize;
}

.contact-show__card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}

.contact-show__section-title {
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-show__row {
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
}

.contact-show__row:last-child {
  border-bottom: 0;
}

.contact-show__row span {
  text-align: right;
  color: #374151;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-show__inbox {
  border: 1px solid #eef2f7;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
}

.contact-show__inbox:last-child {
  margin-bottom: 0;
}

.contact-show__empty {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.contact-show__row--block {
  border-bottom: 0;
  padding-bottom: 4px;
}

.contact-show__row--block + .contact-show__multiline {
  margin-top: 0;
}

.contact-show__multiline {
  margin: 0 0 8px;
  padding: 0 0 8px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #374151;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.contact-show__pre {
  margin: 0;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 12px;
  overflow-x: auto;
  color: #334155;
}

.contact-show__card--flush {
  padding: 8px;
}

.contact-show__logout {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #fecaca;
  border-radius: 10px;
  background: #fff;
  color: #b91c1c;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.contact-show__logout:hover {
  background: #fef2f2;
}

.messages-screen {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  min-height: 100vh;
  background: #eff6ff;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;
}

.messages-screen__body {
  padding-top: 82px;
}

.messages-screen__confirmed-banner {
  margin: 8px 12px 0;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.18);
  color: #166534;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.messages-screen__confirmed-banner svg {
  flex-shrink: 0;
}

.messages-screen__header {
  background: #fff;
  color: #111827;
  padding: 12px 4px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 460px;
  box-sizing: border-box;
  z-index: 20;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.messages-screen__header--account {
  padding-right: 12px;
  justify-content: space-between;
  gap: 8px;
}

.messages-screen__account-logout-form {
  margin: 0;
  flex-shrink: 0;
}

.messages-screen__account-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: #dc2626;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.messages-screen__account-logout svg {
  flex-shrink: 0;
}

.messages-screen__account-logout:hover {
  background: #b91c1c;
}

.messages-screen__account-logout:active {
  background: #991b1b;
}

.messages-screen__header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.messages-screen__header-text {
  min-width: 0;
  flex: 1;
}

.messages-screen__title--ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.messages-screen__subtitle--ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.messages-screen__back {
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 2px 0;
  flex-shrink: 0;
}

.messages-screen__resolve-form {
  margin: 0;
}

.messages-screen__resolve-button {
  border: 0;
  background: transparent;
  color: #2563eb;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
}

.messages-screen__more-button {
  border: 0;
  background: transparent;
  color: #4b5563;
  padding: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  list-style: none;
  line-height: 0;
}

.messages-screen__more-button::-webkit-details-marker {
  display: none;
}

.messages-screen__more-dropdown {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
}

.messages-screen__more-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-width: 170px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 4px;
}

.messages-screen__more-item {
  width: 100%;
  border: 0;
  background: transparent;
  display: block;
  text-decoration: none;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: #111827;
}

.conversation-actions {
  padding: 12px;
  box-sizing: border-box;
  max-width: 100%;
}

.conversation-actions__label {
  flex-shrink: 0;
  font-weight: 600;
  color: #111827;
  margin-right: 8px;
}

.conversation-actions__value {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: right;
  color: #374151;
}

.conversation-actions__empty {
  margin: 0;
  padding: 12px;
  color: #6b7280;
  font-size: 14px;
}

.conversation-actions__muted-block {
  padding: 12px;
  border-top: 1px solid #f1f5f9;
}

.conversation-actions__muted-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}

.conversation-actions__muted-body {
  font-size: 14px;
  color: #374151;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.conversation-actions__muted-body--signature {
  white-space: normal;
  line-height: 1.45;
}

.conversation-actions__muted-body--signature strong {
  font-weight: 700;
  color: #111827;
}

.conversation-actions__muted-body--signature em {
  font-style: italic;
}

.conversation-actions__muted-body--signature del {
  text-decoration: line-through;
  color: #6b7280;
}

.linked-accounts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

.linked-accounts--empty {
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  background: rgba(255, 255, 255, 0.65);
}

.linked-accounts__empty-msg {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  text-align: center;
}

.linked-account-card {
  --linked-account-hue: 230;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98) 0%,
    hsl(var(--linked-account-hue), 55%, 98.5%) 100%
  );
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.linked-account-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(241, 245, 249, 0.9);
}

.linked-account-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    145deg,
    hsl(var(--linked-account-hue), 58%, 52%),
    hsl(calc(var(--linked-account-hue) + 28), 52%, 45%)
  );
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.linked-account-card__head {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.linked-account-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.linked-account-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.linked-account-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.linked-account-card__badge--active {
  background: #dcfce7;
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.linked-account-card__badge--inactive {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.linked-account-card__badge--neutral {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.linked-account-card__badge--soft {
  background: rgba(219, 234, 254, 0.85);
  color: #1e40af;
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-weight: 600;
  text-transform: none;
}

.linked-account-card__meta {
  margin: 0;
  padding: 10px 14px 12px;
  display: grid;
  gap: 0;
}

.linked-account-card__meta-row {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(241, 245, 249, 0.85);
}

.linked-account-card__meta-row:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.linked-account-card__meta-key {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.linked-account-card__meta-val {
  margin: 0;
  font-size: 13px;
  color: #334155;
  text-align: right;
  overflow-wrap: anywhere;
}

.linked-account-card__permissions {
  padding: 10px 14px 14px;
  background: rgba(248, 250, 252, 0.85);
  border-top: 1px solid rgba(241, 245, 249, 0.95);
}

.linked-account-card__permissions-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.linked-account-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.linked-account-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.conversation-actions__status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.conversation-actions__status-form {
  margin: 0;
  width: 100%;
  display: block;
}

.conversation-actions__status-form button[type="submit"] {
  width: 100%;
}

.conversation-actions__status-card {
  margin: 0;
  width: 100%;
  min-height: 92px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 6px;
  box-sizing: border-box;
  font-family: inherit;
  line-height: 1.2;
  text-align: center;
}

.conversation-actions__status-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.95;
}

.conversation-actions__status-card-icon svg {
  display: block;
}

.conversation-actions__status-card-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.conversation-actions__status-card:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.conversation-actions__status-card:active {
  transform: scale(0.98);
}

.conversation-actions__status-card--open {
  background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #34d399;
  color: #065f46;
}

.conversation-actions__status-card--pending {
  background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #f59e0b;
  color: #92400e;
}

.conversation-actions__status-card--snoozed {
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: #8b5cf6;
  color: #5b21b6;
}

.conversation-actions__status-card--resolved {
  background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #64748b;
  color: #334155;
}

.conversation-actions__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 14px;
}

.conversation-actions__row {
  margin: 0;
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  color: #111827;
}

.conversation-actions__row:last-child {
  border-bottom: 0;
}

.conversation-actions__entity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.conversation-actions__entity-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d1d5db;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.conversation-actions__entity-avatar--team {
  background: #dbeafe;
  color: #1d4ed8;
}

.conversation-actions__entity-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conversation-actions__priority-display {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.conversation-actions__priority-icon {
  flex-shrink: 0;
}

.conversation-actions__priority-icon--none {
  color: #6b7280;
}

.conversation-actions__priority-icon--low {
  color: #1d4ed8;
}

.conversation-actions__priority-icon--medium {
  color: #92400e;
}

.conversation-actions__priority-icon--high {
  color: #9a3412;
}

.conversation-actions__priority-icon--urgent {
  color: #991b1b;
}

.conversation-actions__link-button {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-size: 15px;
}

.conversation-actions__section-title {
  margin: 12px 0 8px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.conversation-actions__subsection-title {
  margin: 8px 0 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
}

.conversation-actions__row--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.conversation-actions__row--stack > span:last-child {
  align-self: stretch;
  text-align: left;
}

.conversation-actions__row--muted {
  color: #6b7280;
}

.conversation-actions__row--nested {
  padding-top: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #64748b;
}

.conversation-actions__multiline {
  white-space: pre-wrap;
  word-break: break-word;
  text-align: right;
  max-width: 65%;
}

.conversation-actions__row--stack .conversation-actions__multiline {
  text-align: left;
  max-width: 100%;
}

.conversation-actions__muted {
  font-size: 13px;
  color: #64748b;
}

.conversation-actions__note-block {
  border-bottom: 1px solid #f1f5f9;
}

.conversation-actions__note-block:last-child {
  border-bottom: 0;
}

.conversation-actions__attachments {
  margin: 0 0 8px;
  padding: 0 12px 8px 28px;
  font-size: 14px;
}

.conversation-actions__attachments a {
  color: #2563eb;
}

.conversation-actions__chip {
  display: inline-flex;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 10px;
  color: #2563eb;
  margin-bottom: 12px;
}

.conversation-actions__labels-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.conversation-actions__drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 140;
}

.conversation-actions__drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 10px 12px 18px;
  transform: translateY(105%);
  transition: transform 0.25s ease;
  z-index: 141;
  max-width: 460px;
  margin: 0 auto;
}

.conversation-actions__drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.conversation-actions__drawer.is-open {
  transform: translateY(0);
}

.conversation-actions__drawer-handle {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: #d1d5db;
  margin: 0 auto 10px;
}

.conversation-actions__drawer-title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 16px;
}

.conversation-actions__drawer-options {
  display: grid;
  gap: 8px;
}

.conversation-actions__drawer-option {
  margin: 0;
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.conversation-actions__drawer-option--active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1e40af;
  font-weight: 700;
}

.conversation-actions__drawer-option--none {
  color: #374151;
  border-color: #d1d5db;
}

.conversation-actions__drawer-option--low {
  color: #1d4ed8;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.conversation-actions__drawer-option--medium {
  color: #1e40af;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.conversation-actions__drawer-option--high {
  color: #1d4ed8;
  border-color: #93c5fd;
  background: #dbeafe;
}

.conversation-actions__drawer-option--urgent {
  color: #991b1b;
  border-color: #fecaca;
  background: #fef2f2;
}

.conversation-actions__drawer-option--danger {
  color: #991b1b;
}

.conversation-actions__drawer-close {
  margin-top: 10px;
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 0;
  background: #f3f4f6;
}

.conversation-actions__drawer-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #4b5563;
}

.conversation-actions__step-indicator {
  margin-bottom: 10px;
}

.conversation-actions__step-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 12px;
  font-weight: 700;
}

.conversation-actions__step-track {
  margin-top: 6px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.conversation-actions__step-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f6feb 0%, #1a5fd1 100%);
}

.conversation-actions__step-fill--half {
  width: 50%;
}

.conversation-actions__step-fill--full {
  width: 100%;
}

.conversation-actions__drawer-input {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 10px 12px;
  font-size: 15px;
}

.conversation-actions__drawer-input--contact-search {
  margin-bottom: 10px;
}

.conversation-actions__drawer-save {
  margin-top: 10px;
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 0;
  background: #1a5fd1;
  color: #fff;
  font-weight: 600;
}

.conversation-actions__picker-list {
  display: grid;
  gap: 8px;
  max-height: 160px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.conversation-actions__picker-item {
  margin: 0;
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
  text-align: left;
  padding: 10px 12px;
  font-size: 14px;
  color: #1f2937;
}

.conversation-actions__picker-item-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.conversation-actions__picker-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #1a5fd1;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.conversation-actions__picker-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conversation-actions__picker-item--active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1e40af;
  font-weight: 600;
}

.conversation-actions__picker-item-meta {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.conversation-actions__picker-item-title {
  font-weight: 600;
  color: #111827;
}

.conversation-actions__picker-item-subtitle {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conversation-actions__picker-list--contact {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  gap: 0;
  max-height: 280px;
}

.conversation-actions__picker-item--contact {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #eef2f7;
  min-height: 64px;
  padding: 10px 12px;
  background: #fff;
}

.conversation-actions__picker-list--contact .conversation-actions__picker-item--contact:first-child {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.conversation-actions__picker-list--contact .conversation-actions__picker-item--contact:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.conversation-actions__picker-item--contact .conversation-actions__picker-avatar {
  width: 38px;
  height: 38px;
  font-size: 14px;
}

.conversation-actions__picker-item--contact .conversation-actions__picker-item-meta {
  gap: 1px;
}

.conversation-actions__picker-item--contact .conversation-actions__picker-item-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.conversation-actions__picker-item--contact .conversation-actions__picker-item-subtitle {
  font-size: 14px;
  color: #667085;
}

.conversation-actions__picker-item--contact.conversation-actions__picker-item--active {
  background: #eff6ff;
}

.conversation-actions__wizard-step.is-hidden {
  display: none;
}

.conversation-actions__drawer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.conversation-actions__drawer-save--inline,
.conversation-actions__drawer-close--inline {
  margin-top: 0;
}

a.conversation-actions__drawer-close.conversation-filter__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 0 12px;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
}

a.conversation-actions__drawer-close.conversation-filter__clear:hover {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}

a.conversation-actions__drawer-close.conversation-filter__clear:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.conversation-actions__drawer-save--with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.messages-screen__title {
  margin: 0;
  font-size: 17px;
  color: #111827;
}

.messages-screen__title-link {
  color: inherit;
  text-decoration: none;
}

.messages-screen__title-link:active {
  opacity: 0.85;
}

.messages-screen__title-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.messages-screen__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a5fd1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.messages-screen__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.messages-screen__subtitle {
  margin: 2px 0 0;
  font-size: 12px;
  color: #6b7280;
}

.messages-screen__status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  background: #1a5fd1;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
}

.messages-screen__status-badge--open {
  background: #1a5fd1;
}

.messages-screen__status-badge--pending {
  background: #b45309;
}

.messages-screen__status-badge--snoozed {
  background: #6d28d9;
}

.messages-screen__status-badge--resolved {
  background: #047857;
}

.messages-screen__status-badge--unknown {
  background: #475569;
}

.messages-screen__list {
  padding: 12px;
  display: grid;
  gap: 8px;
  padding-bottom: 88px;
}

.messages-screen__bubble-wrap {
  display: flex;
  justify-content: flex-start;
}

.messages-screen__bubble-wrap--mine {
  justify-content: flex-end;
}

.messages-screen__bubble-wrap--activity {
  justify-content: center;
}

.messages-screen__bubble {
  max-width: 80%;
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}

.messages-screen__bubble--mine {
  background: #dbeafe;
}

.messages-screen__bubble--activity {
  max-width: 90%;
  background: #e2e8f0;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}

.messages-screen__content {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.messages-screen__time {
  margin: 4px 0 0;
  font-size: 11px;
  color: #6b7280;
  text-align: right;
}

.messages-screen__time--activity {
  text-align: center;
  color: #475569;
  font-size: 10px;
  margin-top: 3px;
}

.messages-screen__composer {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: #f0f2f5;
  border-top: 1px solid #e5e7eb;
  padding: 8px;
  padding-bottom: 24px;
  box-sizing: border-box;
}

.messages-screen__composer-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.messages-screen__composer-input {
  flex: 1;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 15px;
}

.messages-screen__composer-send {
  border: 0;
  background: #1a5fd1;
  color: #fff;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-weight: 600;
}

/* Card compacto do item Kanban (tela Acoes) */
.kanban-item-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 14px 12px;
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgb(15 23 42 / 4%);
}

.kanban-item-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.kanban-item-card__header-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  min-width: 0;
}

.kanban-item-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kanban-item-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kanban-item-card__avatar-letter {
  font-size: 16px;
  font-weight: 700;
  color: #475569;
}

.kanban-item-card__name {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  line-height: 1.2;
}

.kanban-item-card__timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.kanban-item-card__timer-icon {
  flex-shrink: 0;
  color: #94a3b8;
}

.kanban-item-card__header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.kanban-item-card__stage-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.kanban-item-card__ring {
  flex-shrink: 0;
}

.kanban-item-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
}

.kanban-item-card__dashed-icon {
  flex-shrink: 0;
  color: #94a3b8;
  margin-top: 2px;
}

.kanban-item-card__detail-body {
  flex: 1;
  min-width: 0;
}

.kanban-item-card__detail-id {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 4px;
}

.kanban-item-card__detail-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #475569;
}

.kanban-item-card__detail-contact {
  font-weight: 500;
  color: #64748b;
}

.kanban-item-card__detail-quote {
  color: #64748b;
}

.kanban-item-card__snooze-pill {
  flex-shrink: 0;
  align-self: center;
  padding: 5px 10px;
  background: #e2e8f0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.kanban-item-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.kanban-item-card__tag {
  padding: 5px 11px;
  font-size: 13px;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
}

.kanban-item-card__footer {
  display: flex;
  align-items: center;
}

.kanban-item-card__channel {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #0f172a;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.kanban-item-card__channel-mark {
  font-size: 12px;
  font-weight: 800;
  color: #22d3ee;
  line-height: 1;
}

.kanban-item-card__cta {
  margin-bottom: 14px;
}

.kanban-item-card__details-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border: 1px solid #2563eb;
  border-radius: 12px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.kanban-item-card__details-link:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}

.kanban-item-card__details-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.kanban-detail-outcome-banner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #14532d;
}

.kanban-detail-outcome-banner--won {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.kanban-detail-outcome-banner__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 1px 3px rgb(22 101 52 / 25%);
}

.kanban-detail-outcome-banner__check svg {
  display: block;
}

.kanban-detail-outcome-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.kanban-detail-outcome-banner strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.kanban-detail-outcome-banner__desc {
  font-size: 14px;
  font-weight: 500;
  color: #166534;
  line-height: 1.4;
}

/* Blocos recolhiveis na pagina de detalhes do Kanban */
.kanban-detail-block {
  margin-bottom: 12px;
  border: 0;
}

.kanban-detail-block__summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.kanban-detail-block__summary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.kanban-detail-block__summary::-webkit-details-marker {
  display: none;
}

.kanban-detail-block__summary::after {
  content: "+";
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e2e8f0;
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  color: #334155;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.kanban-detail-block__summary:hover::after {
  background: #cbd5e1;
  color: #1e293b;
}

.kanban-detail-block[open] .kanban-detail-block__summary::after {
  content: "\2212";
  font-size: 24px;
  font-weight: 300;
  line-height: 26px;
}

.kanban-detail-block[open] .kanban-detail-block__summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

.kanban-detail-block__body {
  margin: 0;
}

.kanban-detail-block__body .conversation-actions__card {
  margin-top: 0;
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
}

.conversation-actions__card--agent-list {
  padding: 0;
  overflow: hidden;
}

.kanban-assigned-agents {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.kanban-assigned-agents__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.kanban-assigned-agents__item:last-child {
  border-bottom: 0;
}

.kanban-assigned-agents__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgb(15 23 42 / 12%);
}

.kanban-assigned-agents__avatar-id {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 2px rgb(0 0 0 / 18%);
  letter-spacing: -0.02em;
}

.kanban-assigned-agents__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.kanban-assigned-agents__kicker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.kanban-assigned-agents__name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* Cards de ofertas (detalhe Kanban, enriquecido pela API) */
.kanban-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 12px 14px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.kanban-offer-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(165deg, #fafbfc 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgb(15 23 42 / 6%);
}

.kanban-offer-card__media {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
  align-self: flex-start;
}

.kanban-offer-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kanban-offer-card__main {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kanban-offer-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.kanban-offer-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
}

.kanban-offer-card__type {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4338ca;
  background: #e0e7ff;
  padding: 4px 8px;
  border-radius: 8px;
}

.kanban-offer-card__value {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #047857;
  letter-spacing: -0.03em;
}

.kanban-offer-card__meta {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.kanban-offer-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #475569;
}

.kanban-offer-card__link {
  margin-top: 4px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
}

.kanban-offer-card__link:hover {
  text-decoration: underline;
}
