/* marketplace.css - Oeffentlicher Flightbook-Marktplatz
   Designsprache analog landing.css/auth.css: Poppins, Navy/Blau/Cyan.
   Mobile-first: Basis-Styles fuer Handy, min-width-Queries fuer Desktop. */

:root {
  --fb-navy-900: #081527;
  --fb-navy-800: #0b1d33;
  --fb-navy-700: #10294a;
  --fb-blue: #1c64d9;
  --fb-blue-soft: #4889cc;
  --fb-sky: #a3d1ff;
  --fb-cyan: #38bdf8;
  --fb-green: #22c55e;
  --fb-amber: #f59e0b;
  --fb-violet: #8b5cf6;
  --fb-text: #17263b;
  --fb-muted: #64748b;
  --fb-border: #dbe4f0;
  --fb-ring: rgba(28, 100, 217, 0.18);
}

* { box-sizing: border-box; }

html, body.mp-page {
  max-width: 100%;
  overflow-x: hidden; /* Sicherheitsnetz gegen horizontales Scrollen auf Mobile */
}

body.mp-page {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--fb-text);
  background: #f4f8fc;
}

body.mp-page img { max-width: 100%; }

/* ---------- Oeffentliche Navbar ---------- */

.mp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 4vw;
  background: rgba(8, 21, 39, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163, 209, 255, 0.12);
}
.mp-brand {
  display: flex;
  align-items: center;
  /* kein gap: ".at" muss direkt an "Flightbook" anschliessen (wie user_page) */
  text-decoration: none;
  color: #fff;
  margin-right: auto;
  font-weight: 600;
  font-size: 17px;
  min-width: 0;
  flex-shrink: 1;
  white-space: nowrap;
}
.mp-brand span { color: var(--fb-sky); }
.mp-brand .mp-sub {
  margin-left: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--fb-cyan);
  background: rgba(56, 189, 248, 0.14);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mp-nav a.mp-navlink {
  color: rgba(234, 243, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.mp-nav a.mp-navlink:hover { color: #fff; background: rgba(163, 209, 255, 0.1); }

/* Schmale Screens: Nav-Links nur als Icons, Badge weg, engere Abstaende */
@media (max-width: 740px) {
  .mp-nav { gap: 6px; padding: 10px 3vw; }
  .mp-nav .mp-lbl { display: none; }
  .mp-nav a.mp-navlink { font-size: 17px; padding: 8px; }
  .mp-btn-cta { padding: 9px 13px; font-size: 17px; }
}
@media (max-width: 420px) {
  .mp-brand .mp-sub { display: none; }
}

.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border: none;
  border-radius: 11px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  white-space: nowrap;
}
.mp-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.mp-btn-primary {
  background: linear-gradient(135deg, var(--fb-blue), #2f7ff0);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(28, 100, 217, 0.35);
}
.mp-btn-cta {
  background: linear-gradient(135deg, #16a34a, var(--fb-green));
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.35);
}
.mp-btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--fb-text) !important;
  border: 1px solid var(--fb-border);
}

/* ---------- Hero / Kopf ---------- */

.mp-hero {
  background: linear-gradient(140deg, var(--fb-navy-900) 0%, var(--fb-navy-700) 70%, #123763 100%);
  color: #fff;
  padding: 26px 4vw 22px;
}
.mp-hero h1 {
  margin: 0 0 4px;
  font-size: 1.45rem;
  font-weight: 700;
}
.mp-hero p { margin: 0; color: rgba(234, 243, 255, 0.75); font-size: 0.92rem; }

/* Suchleiste */
.mp-searchbar {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.mp-searchbar .mp-search-input {
  flex: 1 1 220px;
  position: relative;
}
.mp-searchbar input[type="text"] {
  width: 100%;
  border: none;
  border-radius: 11px;
  padding: 11px 14px 11px 40px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  box-shadow: 0 0 0 3px transparent;
}
.mp-searchbar input[type="text"]:focus { box-shadow: 0 0 0 3px var(--fb-ring); }
.mp-searchbar .bi-search {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fb-muted);
}
.mp-searchbar select {
  border: none;
  border-radius: 11px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--fb-text);
  max-width: 100%;
}

/* Kategorie-Chips: auf Mobile horizontal wischbar, am Desktop umbrechend */
.mp-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 4vw 4px;
  scrollbar-width: none;
}
.mp-cats::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .mp-cats {
    flex-wrap: wrap;
    overflow-x: visible;
    max-width: 1320px;
    margin: 0 auto;
  }
}
.mp-cat-chip {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--fb-border);
  color: var(--fb-text);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.mp-cat-chip.active {
  background: var(--fb-blue);
  border-color: var(--fb-blue);
  color: #fff;
}

/* ---------- Inhalt / Grid ---------- */

.mp-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 4vw 60px;
}

.mp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
  color: var(--fb-muted);
  font-size: 0.88rem;
}
.mp-toolbar select {
  border: 1px solid var(--fb-border);
  border-radius: 9px;
  padding: 7px 10px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--fb-text);
  background: #fff;
}

.mp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px)  { .mp-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .mp-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.mp-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(8, 21, 39, 0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.mp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(8, 21, 39, 0.16);
}
.mp-card-media {
  position: relative;
  aspect-ratio: 4/3;
  background: #dde6f0;
}
.mp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mp-badge-verified {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(34, 197, 94, 0.95);
  color: #fff;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.mp-badge-status {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.mp-st-reserved { background: var(--fb-amber); }
.mp-st-sold     { background: #d6336c; }
.mp-st-draft    { background: var(--fb-muted); }
.mp-st-active   { background: var(--fb-green); }
.mp-st-expired  { background: #7c6f64; }

.mp-card-body { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; }
.mp-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  overflow-wrap: anywhere; /* lange Produktnamen ohne Leerzeichen umbrechen */
}
.mp-card-price { font-size: 1.02rem; font-weight: 700; color: var(--fb-blue); margin-top: auto; }
.mp-card-meta { font-size: 0.74rem; color: var(--fb-muted); margin-top: 3px; display: flex; gap: 8px; flex-wrap: wrap; }

.mp-empty {
  background: #fff;
  border-radius: 14px;
  padding: 50px 20px;
  text-align: center;
  color: var(--fb-muted);
}
.mp-empty i { font-size: 2.2rem; display: block; margin-bottom: 10px; opacity: 0.5; }

/* Pagination */
.mp-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.mp-pagination a, .mp-pagination span {
  min-width: 38px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid var(--fb-border);
  background: #fff;
  color: var(--fb-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.mp-pagination .current { background: var(--fb-blue); border-color: var(--fb-blue); color: #fff; }

/* ---------- Detailseite ---------- */

.mp-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 16px;
}
@media (min-width: 900px) { .mp-detail { grid-template-columns: 3fr 2fr; align-items: start; } }
/* Grid-Kinder duerfen schrumpfen (min-width:auto wuerde sonst ueberlaufen) */
.mp-detail > div { min-width: 0; }

.mp-gallery {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(8, 21, 39, 0.08);
}
.mp-gallery .mp-gal-main {
  position: relative;
  aspect-ratio: 4/3;
  background: #dde6f0;
}
.mp-gallery .mp-gal-main img { width: 100%; height: 100%; object-fit: contain; display: block; background: #0b1d33; }
.mp-gal-thumbs { display: flex; gap: 6px; padding: 10px; overflow-x: auto; }
.mp-gal-thumbs img {
  width: 74px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.65;
  border: 2px solid transparent;
}
.mp-gal-thumbs img.active { opacity: 1; border-color: var(--fb-blue); }

.mp-panel {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(8, 21, 39, 0.08);
  margin-bottom: 16px;
}
.mp-panel { min-width: 0; }
.mp-panel h1 { font-size: 1.25rem; font-weight: 700; margin: 0 0 6px; overflow-wrap: anywhere; }
.mp-panel h2 { font-size: 1.0rem; font-weight: 700; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.mp-detail-price { font-size: 1.6rem; font-weight: 700; color: var(--fb-blue); margin: 6px 0; }
.mp-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.mp-chip {
  background: #f1f5fa;
  color: #41546e;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Nachrichten: Badge in der Navbar */
.mp-navlink { position: relative; }
.mp-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d6336c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Kontaktformular: Vorschlags-Chips */
.mp-suggest {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.mp-suggest button {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fb-blue);
  background: #f0f6ff;
  border: 1px solid #cfe2ff;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.mp-suggest button:hover { background: #e0edff; }

/* Nachrichten: Konversationsliste */
.mp-conv-list { display: flex; flex-direction: column; gap: 10px; }
.mp-conv {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 11px 14px;
  text-decoration: none;
  color: var(--fb-text);
  box-shadow: 0 2px 12px rgba(8, 21, 39, 0.08);
  border-left: 4px solid transparent;
}
.mp-conv.is-unread { border-left-color: var(--fb-blue); }
.mp-conv-pic { width: 66px; height: 52px; border-radius: 9px; object-fit: cover; flex: 0 0 auto; background: #dde6f0; }
.mp-conv-main { flex: 1 1 auto; min-width: 0; }
.mp-conv-top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.mp-conv-partner { font-weight: 700; font-size: 0.92rem; }
.mp-conv-when { font-size: 0.74rem; color: var(--fb-muted); white-space: nowrap; }
.mp-conv-listing {
  font-size: 0.8rem;
  color: var(--fb-blue);
  font-weight: 600;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-conv-preview {
  font-size: 0.82rem;
  color: var(--fb-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-conv.is-unread .mp-conv-preview { color: var(--fb-text); font-weight: 600; }
.mp-conv-unread {
  flex: 0 0 auto;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--fb-blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Nachrichten: Thread / Chat */
.mp-backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--fb-muted);
  text-decoration: none;
}
.mp-backlink:hover { color: var(--fb-blue); }
.mp-thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 2px 12px rgba(8, 21, 39, 0.08);
  margin-bottom: 12px;
}
.mp-thread-info { min-width: 0; }
.mp-thread-partner { font-weight: 700; display: flex; align-items: center; gap: 7px; }
.mp-thread-listing {
  font-size: 0.82rem;
  color: var(--fb-muted);
  margin-top: 2px;
  overflow-wrap: anywhere;
}
.mp-thread-listing a { color: var(--fb-blue); font-weight: 600; text-decoration: none; }
.mp-chat {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(8, 21, 39, 0.08);
  max-height: 55vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mp-chat-day { text-align: center; margin: 4px 0; }
.mp-chat-day span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fb-muted);
  background: #f2f6fb;
  border-radius: 999px;
  padding: 3px 12px;
}
.mp-msg { max-width: 78%; align-self: flex-start; }
.mp-msg.is-own { align-self: flex-end; text-align: right; }
.mp-msg-bubble {
  display: inline-block;
  text-align: left;
  background: #f2f6fb;
  border-radius: 14px 14px 14px 4px;
  padding: 9px 13px;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}
.mp-msg.is-own .mp-msg-bubble {
  background: var(--fb-blue);
  color: #fff;
  border-radius: 14px 14px 4px 14px;
}
.mp-msg-time { font-size: 0.68rem; color: var(--fb-muted); margin-top: 3px; }
.mp-chat-form {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-top: 12px;
}
.mp-chat-form textarea {
  flex: 1 1 auto;
  resize: none;
  border: 1px solid var(--fb-border);
  border-radius: 12px;
  padding: 10px 13px;
  font-family: inherit;
  font-size: 0.9rem;
  min-height: 42px;
}
.mp-chat-form textarea:focus { outline: none; border-color: var(--fb-blue); }
.mp-chat-form .mp-btn { height: 42px; }

/* Flash-Meldung im Marktplatz-Stil */
.mp-flash {
  background: #fff;
  border-left: 5px solid var(--fb-green);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(8, 21, 39, 0.06);
}

/* Teilen-Button + Fallback-Menue */
.mp-title-row { display: flex; align-items: flex-start; gap: 10px; }
.mp-title-row h1 { flex: 1 1 auto; min-width: 0; }
.mp-share-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--fb-border);
  border-radius: 11px;
  background: #fff;
  color: var(--fb-blue);
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.mp-share-btn:hover { background: #f0f6ff; border-color: var(--fb-blue); }
.mp-share-menu {
  display: none;
  gap: 6px;
  flex-wrap: wrap;
  margin: 4px 0 10px;
  padding: 10px;
  background: #f6f9fd;
  border: 1px solid var(--fb-border);
  border-radius: 12px;
}
.mp-share-menu.open { display: flex; }
.mp-share-menu a, .mp-share-menu button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--fb-border);
  background: #fff;
  color: var(--fb-text);
  text-decoration: none;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
}
.mp-share-menu a:hover, .mp-share-menu button:hover { border-color: var(--fb-blue); }
.mp-actionbar .mp-ab-share { width: 46px; height: 46px; flex: 0 0 auto; }

/* Modellpass */
.mp-passport {
  background: linear-gradient(135deg, #0f2c1e, #14532d);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.mp-passport .mp-pass-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 12px;
}
.mp-passport .mp-pass-head .bi-patch-check-fill { color: var(--fb-green); font-size: 1.2rem; }
.mp-pass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mp-pass-kpi { background: rgba(255, 255, 255, 0.08); border-radius: 11px; padding: 10px; text-align: center; }
.mp-pass-kpi .val { font-size: 1.1rem; font-weight: 700; }
.mp-pass-kpi .lbl { font-size: 0.7rem; opacity: 0.75; margin-top: 2px; }
.mp-pass-note { font-size: 0.74rem; opacity: 0.7; margin-top: 10px; }
@media (max-width: 390px) {
  .mp-pass-kpi { padding: 8px 4px; }
  .mp-pass-kpi .val { font-size: 0.92rem; }
}

/* Positionsliste (inkl./ohne) */
.mp-items li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--fb-border);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}
.mp-items li > span { min-width: 0; }
.mp-items { margin: 0; padding: 0; }
.mp-items li:last-child { border-bottom: none; }
.mp-items .bi-check-circle-fill { color: var(--fb-green); }
.mp-items .bi-x-circle-fill { color: #d6336c; }
.mp-items .mp-item-details { color: var(--fb-muted); font-size: 0.8rem; }
.mp-items .mp-item-price { margin-left: auto; font-weight: 600; white-space: nowrap; }
.mp-items li.excluded { opacity: 0.6; }

.mp-desc { white-space: pre-line; font-size: 0.94rem; line-height: 1.55; overflow-wrap: anywhere; }

.mp-seller-row { display: flex; align-items: center; gap: 12px; }
.mp-seller-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fb-blue), var(--fb-cyan));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.mp-seller-name { font-weight: 700; }
.mp-seller-sub { font-size: 0.8rem; color: var(--fb-muted); }

/* Kontakt-Formular */
.mp-contact textarea {
  width: 100%;
  border: 1px solid var(--fb-border);
  border-radius: 11px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.92rem;
  min-height: 90px;
  resize: vertical;
}
.mp-contact textarea:focus { outline: none; box-shadow: 0 0 0 3px var(--fb-ring); border-color: var(--fb-blue); }

/* Mobile: sticky Action-Bar auf der Detailseite */
.mp-actionbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--fb-border);
  box-shadow: 0 -4px 18px rgba(8, 21, 39, 0.10);
}
.mp-actionbar .mp-ab-price { font-size: 1.15rem; font-weight: 700; color: var(--fb-blue); }
.mp-actionbar .mp-btn { flex: 1; }
@media (min-width: 900px) { .mp-actionbar { display: none; } }
body.has-actionbar { padding-bottom: 76px; }

/* Inserat melden */
.mp-report {
  margin-top: 14px;
  text-align: center;
}
.mp-report > button,
.mp-report > a {
  background: none;
  border: none;
  color: var(--fb-muted);
  font-size: 0.8rem;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 8px;
}
.mp-report > button:hover,
.mp-report > a:hover { color: var(--fb-blue); }
.mp-report form {
  margin-top: 10px;
  text-align: left;
  background: var(--fb-card, #fff);
  border: 1px solid var(--fb-border, #dbe4f0);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-report form select,
.mp-report form textarea {
  width: 100%;
  border: 1px solid var(--fb-border, #dbe4f0);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.85rem;
  font-family: inherit;
}

/* Footer */
.mp-footer {
  text-align: center;
  color: var(--fb-muted);
  font-size: 0.8rem;
  padding: 30px 16px 40px;
}
.mp-footer a { color: var(--fb-blue); text-decoration: none; }
