:root {
  --bg: #0b141a;
  --panel: #111b21;
  --border: #2a3942;
  --text: #e9edef;
  --muted: #8696a0;
  --accent: #00a884;
  --incoming: #202c33;
  --outgoing: #005c4b;
}

* {
  box-sizing: border-box;
}

/* Standalone inbox page only (admin uses .wa-inbox-embed in admin-embed.css) */
html:has(body.wa-inbox-standalone) {
  height: 100%;
  overflow: hidden;
}

body.wa-inbox-standalone {
  margin: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.topbar h1 {
  margin: 0;
  font-size: 1.1rem;
}

.badge {
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--border);
}

.badge.ready {
  background: #1f3d32;
  color: #7dffb2;
}

.badge.qr {
  background: #3d351f;
  color: #ffd67d;
}

.badge.loading {
  background: #2a3d4f;
  color: #7dcfff;
}

.qr-panel {
  position: relative;
  flex-shrink: 0;
  text-align: center;
  padding: 1.5rem;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.qr-close {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.2rem 0.55rem;
}

.qr-close:hover {
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-login-btn {
  white-space: nowrap;
}

.login-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--panel);
}

.login-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.login-bar button {
  white-space: nowrap;
}

.qr-panel img {
  width: 260px;
  height: 260px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

.hint,
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

.layout {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 300px 1fr minmax(280px, 320px);
  overflow: hidden;
  align-items: stretch;
}

.layout > .sidebar,
.layout > .conversation,
.layout > .details {
  min-height: 0;
  max-height: 100%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.sidebar-tools {
  flex-shrink: 0;
}

.sidebar-chats {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.conversation {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.details {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: 1px solid var(--border);
  padding: 1rem;
  background: var(--bg);
}

.sidebar-tools {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}

.sidebar-actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
}

.sidebar-actions button:not(.sidebar-icon-btn) {
  flex: 1 1 0;
  min-width: 0;
  font-size: 0.8rem;
  padding: 0.5rem 0.4rem;
  white-space: nowrap;
}

.sidebar-actions .sidebar-icon-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0;
}

.sidebar-actions .sidebar-icon-btn svg {
  display: block;
}

.sidebar-tools button.secondary {
  background: var(--incoming);
  color: var(--text);
  border: 1px solid var(--border);
}

.sync-status {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
}

.empty-hint {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.sidebar-tools label,
.details label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

select,
input,
button {
  font: inherit;
}

select,
input {
  background: var(--incoming);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 0.5rem;
}

button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--incoming);
  flex-shrink: 0;
}

.chat-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.chat-list li .avatar {
  width: 48px;
  height: 48px;
}

.chat-list .chat-body {
  flex: 1;
  min-width: 0;
}

.chat-list li:hover,
.chat-list li.active {
  background: var(--incoming);
}

.chat-list .title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.chat-list .preview {
  color: var(--muted);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-list .meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.unread {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0 6px;
  font-size: 0.7rem;
}

.chat-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: var(--panel);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.chat-header:hover {
  background: var(--incoming);
}

.avatar-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.75rem;
  background: var(--incoming);
}

.profile-hero {
  text-align: center;
  padding: 0.5rem 0 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.profile-hero h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.profile-about {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.tab {
  flex: 1;
  background: var(--incoming);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.4rem;
  font-size: 0.8rem;
}

.tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.tab-panel {
  max-height: 42vh;
  overflow-y: auto;
}

.info-list {
  margin: 0 0 1rem;
  font-size: 0.85rem;
}

.info-list dt {
  color: var(--muted);
  margin-top: 0.5rem;
}

.info-list dd {
  margin: 0.15rem 0 0;
  word-break: break-word;
}

.subhead {
  font-size: 0.9rem;
  margin: 1rem 0 0.5rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.media-grid .media-item {
  aspect-ratio: 1;
  background: var(--incoming);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
  padding: 0.25rem;
}

.media-grid img,
.media-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.links-list li {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.links-list a {
  color: #53bdeb;
  word-break: break-all;
}

.tab-hint {
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
}

.icon-btn,
.attach-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.4rem;
  cursor: pointer;
  font-size: 0.85rem;
  margin: 0;
  background: var(--incoming);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
}

.attach-btn {
  font-size: 1.1rem;
}

.conversation-footer {
  flex-shrink: 0;
  background: var(--panel);
  border-top: 1px solid var(--border);
}

.composer {
  position: relative;
  z-index: 50;
  flex-shrink: 0;
  background: var(--panel);
}

emoji-picker.emoji-picker {
  position: absolute;
  bottom: 100%;
  left: 0.5rem;
  right: 0.5rem;
  max-height: min(360px, 45vh);
  width: auto;
  z-index: 100;
  pointer-events: auto;
  --emoji-size: 1.375rem;
  --num-columns: 8;
  --background: var(--panel);
  --border-color: var(--border);
  --button-active-background: var(--incoming);
  --input-border-color: var(--border);
  --input-font-color: var(--text);
  --input-placeholder-color: var(--muted);
  --outline-color: var(--accent);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

emoji-picker.hidden {
  display: none;
}

.gif-modal-box {
  width: min(520px, 94vw);
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gif-search-row {
  display: flex;
  gap: 0.5rem;
}

.gif-search-row input {
  flex: 1;
}

.gif-url-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.gif-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  overflow-y: auto;
  max-height: 40vh;
  margin-top: 0.5rem;
  min-height: 80px;
}

.gif-results .gif-item {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--incoming);
}

.gif-results .gif-item:hover {
  border-color: var(--accent);
}

.gif-results img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bubble .media-thumb {
  max-width: 220px;
  max-height: 220px;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin-bottom: 0.35rem;
}

.bubble .media-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.lightbox-box {
  background: var(--panel);
  padding: 0;
  border-radius: 8px;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}

.lightbox-toolbar-spacer {
  flex: 1;
}

.lightbox-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
}

.lightbox-icon-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.lightbox-icon-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lightbox-media {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 120px;
  max-width: 88vw;
  max-height: calc(92vh - 3.5rem);
}

.lightbox-media img,
.lightbox-media video {
  max-width: 85vw;
  max-height: calc(92vh - 5rem);
  border-radius: 4px;
}

.lightbox-media audio {
  width: min(400px, 80vw);
}

.lightbox-doc-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.bubble-row {
  display: flex;
  flex-direction: column;
  max-width: 75%;
}

.bubble-row.out {
  align-self: flex-end;
  align-items: flex-end;
}

.bubble-row.in {
  align-self: flex-start;
  align-items: flex-start;
}

.bubble-actions {
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.15s;
  margin-bottom: 0.15rem;
}

.bubble-row:hover .bubble-actions {
  opacity: 1;
}

.icon-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: var(--panel);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.icon-action-btn:hover {
  color: var(--text);
  background: var(--incoming);
  border-color: var(--accent);
}

.icon-action-btn svg {
  display: block;
}

.message-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.2rem;
}

.reaction-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.85rem;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
}

.reaction-pill.mine {
  border-color: var(--accent);
  background: rgba(11, 132, 109, 0.2);
}

.reaction-pill:hover {
  background: var(--incoming);
}

.reaction-count {
  font-size: 0.7rem;
  color: var(--muted);
}

.react-modal-box {
  max-width: 22rem;
}

.react-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.react-emoji-btn {
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 8px;
  background: var(--incoming);
  border: 1px solid var(--border);
  cursor: pointer;
}

.react-emoji-btn:hover {
  border-color: var(--accent);
  transform: scale(1.08);
}

.react-custom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.react-custom input {
  font-size: 1.25rem;
  padding: 0.4rem 0.5rem;
}

.bubble {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  line-height: 1.4;
  word-break: break-word;
}

.msg-text {
  white-space: pre-wrap;
}

.msg-detectable {
  display: inline;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: #53bdeb;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  word-break: break-all;
}

.msg-detectable:hover {
  color: #7dcfff;
}

.detect-popover {
  position: fixed;
  z-index: 200;
  min-width: 220px;
  max-width: min(320px, 90vw);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  padding: 0.75rem;
}

.detect-popover-body .detect-title {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.detect-popover-body .detect-value {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  word-break: break-all;
}

.detect-popover-body .detect-status {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
}

.detect-popover-body .detect-ok {
  color: #25d366;
}

.detect-popover-body .detect-warn {
  color: #e8a838;
}

.detect-popover-body .detect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.detect-popover-body .detect-actions button {
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
}

.quoted {
  border-left: 3px solid var(--accent);
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.location-card {
  display: block;
  max-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: #1f2c34;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.location-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.location-map-wrap {
  position: relative;
  background: #0b141a;
}

.location-map {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: linear-gradient(180deg, #dfe8e2 0%, #b8c9b8 100%);
}

.location-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -18px 0 0 -9px;
  background: #ea4335;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.location-info {
  padding: 0.55rem 0.7rem 0.65rem;
}

.location-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25;
}

.location-address {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}

.location-open {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #53bdeb;
}

.bubble-row.location-row .bubble {
  padding: 0.35rem;
  background: transparent;
}

.edited-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-style: italic;
}

.bubble-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.bubble-footer time {
  font-size: 0.7rem;
  color: var(--muted);
}

.ack {
  display: inline-flex;
  align-items: center;
  margin-left: 0.2rem;
  vertical-align: middle;
  line-height: 1;
}

.ack .tick {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
}

.ack-delivered .tick + .tick,
.ack-read .tick + .tick {
  margin-left: -0.38em;
}

.ack-pending .tick,
.ack-sent .tick {
  color: #8696a0;
}

.ack-delivered .tick {
  color: #8696a0;
}

.ack-read .tick {
  color: #53bdeb;
}

.ack-error {
  color: #ea4335;
  font-weight: 700;
  font-size: 0.7rem;
}

.chat-header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  text-align: left;
}

.header-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-subtitle.online {
  color: #25d366;
}

.bubble-row.in .bubble {
  background: var(--incoming);
}

.bubble-row.out .bubble {
  background: var(--outgoing);
}

.reply-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--incoming);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}

.reply-bar-text {
  font-size: 0.85rem;
  overflow: hidden;
}

.reply-bar-text span {
  display: block;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#cancel-reply {
  background: transparent;
  color: var(--muted);
  font-size: 1.25rem;
  padding: 0 0.5rem;
  line-height: 1;
}

/* Scoped — unscoped .modal broke AdminLTE (display:flex on hidden Bootstrap modals) */
.wa-inbox-embed .modal,
body.wa-inbox-standalone .modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.wa-inbox-embed .modal-box,
body.wa-inbox-standalone .modal-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  width: min(360px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wa-inbox-embed .modal-box h3,
body.wa-inbox-standalone .modal-box h3 {
  margin: 0;
}

.wa-inbox-embed .modal-box label,
body.wa-inbox-standalone .modal-box label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.wa-inbox-embed .modal-box label input,
body.wa-inbox-standalone .modal-box label input {
  padding: 0.5rem 0.6rem;
  background: var(--incoming);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1rem;
}

.wa-inbox-embed .modal-actions,
body.wa-inbox-standalone .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.send-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--panel);
}

.media-load-btn {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px dashed var(--border);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
}

.media-load-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

.send-form input {
  flex: 1;
}

.bridge-footer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 1200px) {
  .layout {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }
  .details {
    display: none;
  }
}

@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(140px, 38vh) minmax(0, 1fr);
  }
  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .conversation {
    border-right: none;
  }
  .details {
    display: none;
  }
}
