/* ============================================================
   myRentHouse Mobile CSS Framework
   Mobile-first, full-screen, responsive
   ============================================================ */


/* ------------------------------
   1. Base Theme Variables
------------------------------ */
:root {
  --mrh-bg: #f4f6fb;
  --mrh-card-bg: #ffffff;
  --mrh-text: #1a1a1a;
  --mrh-text-muted: #6f7a8a;
  --mrh-border-subtle: #e0e4ef;
  --mrh-primary: #00a2ff;
  --mrh-primary-dark: #0084d0;

  --mrh-radius-lg: 20px;
  --mrh-radius-md: 14px;
  --mrh-radius-pill: 999px;

  --mrh-shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.08);

  --mrh-font-main: -apple-system, BlinkMacSystemFont,
                   "Segoe UI", Roboto, system-ui, sans-serif;
}


/* ------------------------------
   2. Global Reset + Body
------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: var(--mrh-font-main);
  color: var(--mrh-text);
  background: var(--mrh-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.mrh-search-icon {
    width: 42px; /* fixed width so it doesn't shrink input */
    text-align: center;
    font-weight: 600;
}
.mrh-search-icon-label {
    font-size: 14px;
}

/* ------------------------------
   3. Layout Shell
------------------------------ */

.mrh-page {
  min-height: 100vh;
  background: var(--mrh-bg);
}

/* This class is used on pages with fixed header + footer */
body.mrh-page {
  padding-top: 60px;    /* for fixed header */
  padding-bottom: 70px; /* for floating footer bar */
}

.mrh-page-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 12px 32px;
}

.mrh-section {
  width: 100%;
  margin-top: 16px;
}


/* ------------------------------
   4. Header 
------------------------------ */

.mrh-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--mrh-border-subtle);
  z-index: 1000;
}

.mrh-header-inner {
  width: 100%;
  margin: 0;
  padding: 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Icons on left & right */
.mrh-header-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  cursor: pointer;

  background: #f1f5f9;
  color: #0f172a;
}

/* Centered logo */
.mrh-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mrh-logo img {
  height: 36px;
  padding-top: 5px;
}
.mrh-header-title {
  text-align: center;
}

/* ------------------------------
   5. Landing Hero (Search Hero)
------------------------------ */

.mrh-hero {
  width: 100%;
  position: relative;
  margin-top: -5px;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  height: 60vh;
  max-height: 60vh;
  min-height: 60vh;
}

.mrh-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

/* Optional large overlay */
.mrh-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 16px 32px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

.mrh-hero-title {
  font-size: 1.7rem;
  font-weight: 800;
  max-width: 22ch;
  line-height: 1.15;
}

/* Text positioned above the search bars, centered under the logo */
.mrh-hero-types {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;

  color: #ffffff;
  font-size: 0.90rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.45);
}

/* Lower label positioned just above the search stack */
.mrh-hero-lower-label {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: left;

  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);

  bottom: 160px;
}


/* ------------------------------
   6. Search Stack (Landing)
------------------------------ */

.mrh-section-map {
  margin-top: 10px;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}

/* Search stack overlapping hero */
.mrh-search-stack {
  margin-top: -150px;
  padding: 0 8px 8px;
  position: relative;
  z-index: 5;
}

.mrh-search-stack-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* First search pill (Listing ID) */
.mrh-search-field {
  position: relative;
  display: flex;
  align-items: center;

  background: #ffffff;
  border-radius: var(--mrh-radius-pill);
  box-shadow: var(--mrh-shadow-soft);

  padding: 4px 10px 4px 14px;
  width: 65%;
  margin-left: 0;
  margin-right: 0;
}

/* Second field (Address) */
.mrh-search-stack-inner .mrh-search-field:nth-child(2) {
  width: 90%;
}

.mrh-search-input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 0.95rem;
  padding: 8px 8px 8px 0;
}

.mrh-search-input::placeholder {
  color: var(--mrh-text-muted);
}

.mrh-search-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding-left: 8px;
  cursor: pointer;
}


/* ------------------------------
   7. Generic Card Components
------------------------------ */

.mrh-card {
  width: 100%;
  background: var(--mrh-card-bg);
  border-radius: var(--mrh-radius-lg);
  box-shadow: var(--mrh-shadow-soft);
  padding: 12px 14px 16px;
}

.mrh-card-banner {
  padding: 0 0 16px;
  overflow: hidden;
}

.mrh-card-banner img {
  border-radius: var(--mrh-radius-lg) var(--mrh-radius-lg) 0 0;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.mrh-card-body {
  padding: 12px 14px 4px;
}

.mrh-card-center {
  text-align: center;
}

.mrh-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.mrh-card-subtitle {
  font-size: 0.9rem;
  color: var(--mrh-text-muted);
  margin-bottom: 14px;
}

/* Map card */
.mrh-card-map img {
  border-radius: var(--mrh-radius-lg);
  width: 100%;
  height: auto;
}


/* ------------------------------
   8. Buttons
------------------------------ */

.mrh-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 10px 20px;
  border-radius: var(--mrh-radius-pill);

  border: none;
  cursor: pointer;

  font-size: 0.95rem;
  font-weight: 600;

  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    background-color 0.12s ease;
}

.mrh-btn-primary {
  background: var(--mrh-primary);
  color: #ffffff;
  box-shadow: var(--mrh-shadow-soft);
}

.mrh-btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
  background: var(--mrh-primary-dark);
}

.mrh-btn-block {
  width: 100%;
}


/* ------------------------------
   9. Utility Classes
------------------------------ */

.mrh-mt-xs { margin-top: 6px; }
.mrh-mt-sm { margin-top: 10px; }
.mrh-mt-md { margin-top: 16px; }
.mrh-mt-lg { margin-top: 24px; }

.mrh-px { padding-left: 12px; padding-right: 12px; }

.mrh-text-center { text-align: center; }


/* ------------------------------
   10. Responsive Breakpoints
------------------------------ */

@media (min-width: 576px) {
  .mrh-hero {
    min-height: 300px;
  }

  .mrh-hero-title {
    font-size: 1.9rem;
  }
}

@media (min-width: 768px) {
  .mrh-card {
    padding: 16px 18px 20px;
  }

  .mrh-search-stack-inner {
    flex-direction: column;   /* force stacked */
    gap: 16px;
  }
}


/* ============================
   11. Floating Icon-Only Footer Bar
   ============================ */

.mrh-footer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 8px 24px 12px;
  background: #ffffff;
  border-top: 1px solid var(--mrh-border-subtle);
  box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.12);

  z-index: 1000;
}

/* Circular icon buttons */
.mrh-footer-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  border: none;
  background: #ffffff;
  box-shadow: var(--mrh-shadow-soft);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* Default icon color */
.mrh-footer-icon-btn i {
  font-size: 1.05rem;
  color: var(--mrh-primary);
  line-height: 1;
}

/* Highlighted / primary center icon */
.mrh-footer-icon-btn-primary {
  background: var(--mrh-primary);
}

.mrh-footer-icon-btn-primary i {
  color: #ffffff;
}

/* Tap feedback */
.mrh-footer-icon-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}


/* =======================================
   12. Full-Width Real Footer (3 Columns)
======================================= */

.mrh-real-footer {
  width: 100%;
  background: #ffffff;
  color: #676767;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid var(--mrh-border-subtle);
}

.mrh-real-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mrh-footer-col {
  flex: 1;
  font-size: 0.9rem;
  text-align: center;
}


/* ============================================================
   13. Ab-Style DETAIL PAGE LAYOUT
   (Used on /mobile/property-detail-*.cfm)
============================================================ */

.mrh-page-wrap {
  background: #f7f7f7;
}

/* Wrapper for listing detail pages */
.mrh-listing-page {
  background-color: #f7f7f7;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: #222222;
}

/* ------------------------------
   TOP HERO IMAGE (Airbnb style)
------------------------------ */

/* Base hero frame for the detail page */
.mrh-listing-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;   /* tall hero, Airbnb-like on mobile */
  overflow: hidden;
  background-color: #ddd;
}

.mrh-listing-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient at bottom like Airbnb */
.mrh-listing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.45) 100%
  );
  pointer-events: none;
}

/* Top icons bar (back + save, etc.) */
.mrh-hero-topbar {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.mrh-hero-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  text-decoration: none;
  color: #222222;
  font-size: 15px;
}

.mrh-hero-icon-btn i {
  line-height: 1;
}

/* "Show all photos" chip */
.mrh-hero-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34,34,34,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}


/* ------------------------------
   MAIN CONTENT CARD (Detail)
------------------------------ */

.mrh-listing-main {
  position: relative;
  z-index: 5;
  margin-top: -55px;              /* pull it up slightly over hero */
  padding: 16px 16px 96px;        /* bottom space for sticky footer */
  border-radius: 18px 18px 0 0;
  background: #ffffff;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.12);
}

/* Sections inside the card */
.mrh-section {
  /*padding: 16px 0;*/
  border-bottom: 1px solid #f1f1f1;
}

.mrh-section:last-of-type {
  border-bottom: none;
}

/* Title & location */
.mrh-listing-title {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 600;
  color: #222222;
}

.mrh-listing-location {
  font-size: 14px;
  color: #717171;
  margin-bottom: 6px;
}

/* Meta line: rating, guest favorite, managed, etc */
.mrh-listing-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 13px;
  color: #222222;
  align-items: center;
}

.mrh-dot-separator::before {
  content: "• ";
}

/* Keyline like "2 beds · 2 baths · 950 sq ft" */
.mrh-keyline {
  margin-top: 6px;
  font-size: 13px;
  color: #717171;
}

/* Section headers */
.mrh-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 8px;
}

/* Highlight list (Top 5% · etc.) */
.mrh-highlight-list {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fafafa;
}

.mrh-highlight-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
}

.mrh-highlight-item-text {
  font-size: 13px;
  color: #717171;
  margin-top: 2px;
}

/* Description text */
.mrh-description {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #222222;
}

/* Muted helper text */
.mrh-muted {
  font-size: 12px;
  color: #717171;
}

/* Amenities pill list */
.mrh-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mrh-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  font-size: 12px;
  color: #222222;
  background: #ffffff;
}

/* Host row */
.mrh-host-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mrh-host-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mrh-host-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  background: #f0f0f0;
}

.mrh-host-text-main {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
}

.mrh-host-text-sub {
  font-size: 12px;
  color: #717171;
}


/* ------------------------------
   DETAIL PAGE PHOTO GRID (below)
------------------------------ */

.thumbs-grid {
  --thumb-size: 104px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.thumbs-item {
  flex: 0 0 auto;
  width: var(--thumb-size);
}

.thumbs-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
}

.thumbs-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ------------------------------
   STICKY BOOKING / CTA FOOTER
   (like Airbnb price + Reserve)
------------------------------ */

.mrh-booking-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  z-index: 30;
}

.mrh-booking-price-main {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
}

.mrh-booking-price-sub {
  display: block;
  font-size: 12px;
  color: #717171;
}

/* This button can be "Request Info", "Contact", etc. */
.mrh-booking-btn {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff385c, #e61e4d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.mrh-booking-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* round icon button next to Request info */
.mrh-booking-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  padding: 0;
  cursor: pointer;
}

.mrh-booking-share-btn i {
  font-size: 16px;
  color: #222222;
}

.mrh-booking-share-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* ------------------------------
   DETAIL PAGE LAYOUT BREAKPOINT
------------------------------ */

@media (min-width: 768px) {
  .mrh-listing-main {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 24px 96px;
  }

  .mrh-listing-hero {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 0 0 18px 18px;
  }

  .mrh-booking-footer {
    left: 50%;
    transform: translateX(-50%);
    max-width: 720px;
    border-radius: 14px 14px 0 0;
  }
}

/* Toggle which layout shows */
.mrh-mobile-air-layout {
  display: block;
}

.mrh-desktop-layout {
  display: none;
}

/* On tablet/desktop, show your existing desktop layout instead */
@media (min-width: 768px) {
  .mrh-mobile-air-layout {
    display: none;
  }
  .mrh-desktop-layout {
    display: block;
  }
}


/* ============================================================
   14. Hero Carousel (Swipeable Airbnb-style)
   (You’ll hook this up with new HTML next)
============================================================ */

.mrh-hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: #ddd;
}


.mrh-hero-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  position: relative;
}

.mrh-hero-slide img {
  width: 100%;
  height: 100%;
  height: 290px;      /* tweak: 260–320 for more Airbnb feel */
  object-fit: cover;
  display: block;
}

/* reuse gradient overlay on the carousel container */
.mrh-hero-carousel::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.45) 100%
  );
}


/* Horizontal scroll track with snap */
.mrh-hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar on mobile */
.mrh-hero-track::-webkit-scrollbar {
  display: none;
}
.mrh-hero-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}




/* Top icons (back / save) – you already had similar styles */
.mrh-hero-topbar {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.mrh-hero-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  text-decoration: none;
  color: #222222;
  font-size: 15px;
}

/* “Show all photos” chip */
.mrh-hero-chip {
  position: absolute;
  right: 14px;
  bottom: 60px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34,34,34,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
/* Dots at bottom center */
.mrh-hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 70px;
  display: flex;
  gap: 6px;
  z-index: 4;
  pointer-events: none; /* dots themselves will re-enable pointer events */
}

/* Individual dot */
.mrh-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
  opacity: 0.8;
  pointer-events: auto; /* clickable */
}

/* Active / focused slide dot */
.mrh-hero-dot.is-active {
  width: 18px;
  background: #ffffff;
  opacity: 1;
}

/* ============================================
   PHOTO REEL CAROUSEL (Airbnb-style horizontal)
   ============================================ */

.mrh-photos-carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
}

.mrh-photos-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 4px 4px 10px;
  -webkit-overflow-scrolling: touch;
}

.mrh-photos-track::-webkit-scrollbar {
  display: none;
}

/* Each photo slide */
.mrh-photo-slide {
  flex: 0 0 70%;
  max-width: 70%;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

/* Make first photo bigger automatically */
.mrh-photo-slide:first-child {
  flex-basis: 85%;
  max-width: 85%;
}

/* Subsequent ones a bit smaller (peek in) */
.mrh-photo-slide:not(:first-child) {
  flex-basis: 85%;
  max-width: 85%;
}

/* Image style */
.mrh-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================
   SAVE LISTING MODAL (bottom sheet style)
   ============================================ */

.mrh-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 9999;
}

.mrh-modal-sheet {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.28);
  padding: 12px 16px 18px;
  transform: translateY(0);
  animation: mrh-modal-slide-up 0.20s ease-out;
}

/* little grab handle on top */
.mrh-modal-handle {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: #e2e8f0;
  margin: 4px auto 10px;
}

.mrh-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mrh-modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.mrh-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mrh-modal-close i {
  font-size: 14px;
  color: #64748b;
}

.mrh-modal-body {
  margin-top: 10px;
}

.mrh-modal-text {
  margin: 0 0 14px;
  font-size: 14px;
  color: #475569;
}

.mrh-modal-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #0f172a;
}

/* reuse your existing mrh-form-group fields – they already look good */

.mrh-modal-btn-primary {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #ff385c, #e61e4d);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
  cursor: pointer;
}

.mrh-modal-footer-note {
  margin-top: 10px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

.mrh-modal-footer-note a {
  color: #0f172a;
  font-weight: 500;
  text-decoration: underline;
}

/* Slide-up animation */
@keyframes mrh-modal-slide-up {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- MOBILE PHOTO CAROUSEL SIZING FIX --- */

/* Make sure the track is horizontal scroll (if it isn't already) */
.mrh-photos-carousel {
    overflow-x: auto;
    overflow-y: hidden;
}

.mrh-photos-track {
    display: flex;
    gap: 8px;
}

/* Each slide is a wide card, not full-screen tall */
.mrh-photo-slide,
.mrh-photo-large {
    flex: 0 0 84%;      /* ~84% of viewport width per slide */
    max-width: 84%;
    border-radius: 12px;
    overflow: hidden;
}

/* Control the actual image size on small screens */
.mrh-photo-slide img,
.mrh-photo-large img {
    display: block;
    width: 100%;
    height: auto;       /* prevent vertical stretching */
    max-height: 220px;  /* <<< hard cap so it doesn’t take the whole screen */
    object-fit: cover;  /* crop edges if aspect ratio is tall */
}

/* Let images grow a bit on tablets / larger screens */
@media (min-width: 768px) {
    .mrh-photo-slide,
    .mrh-photo-large {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .mrh-photo-slide img,
    .mrh-photo-large img {
        max-height: 360px;
    }
}

/* Property ID search field */
.mrh-id-search-field {
    position: relative;
    width: 80%;
    margin-bottom: 14px;
}

.mrh-id-search-input {
    width: 65%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #ffffff;
}

/* Optional: style the Property ID button (not circle, unless you want) */
.mrh-id-go-btn {
    position: absolute;
    right: 30px;  /* moves it OUTSIDE the white field */
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: 2px solid #ffffff;
    background: transparent;
    border-radius: 50%;

    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.mrh-id-go-btn:hover {
    opacity: .7;
}
 

/* Outer wrapper for proper layout */
.mrh-search-wrap {
    position: relative;
    width: 82%;
    margin-bottom: 12px;
}

/* Search field */
.mrh-search-field {
    width: 100%;
}

/* Input stays full width */
.mrh-search-input {
    width: 100%;
	font-size: 16px;
    padding-right: 16px; /* normal padding */
}

/* Circular GO button OUTSIDE the white box */
.mrh-go-circle {
    position: absolute;
    right: -55px;  /* moves it OUTSIDE the white field */
    top: 40%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: 2px solid #ffffff;
    background: transparent;
    border-radius: 50%;

    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.mrh-hero-icon-btn .fa-heart {
  transition: transform 0.18s ease-out, color 0.18s ease-out;
}

/* When listing is saved */
.mrh-save-active .fa-heart {
  color: #ff385c;        /* Airbnb-ish red/pink */
  transform: scale(1.08);
}

.mrh-save-active {
  background: rgba(0, 0, 0, 0.20); /* slight dark halo behind icon */
}

/* Circle buttons (Home + Share) */
.mrh-booking-circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    border: none;
    text-decoration: none;
    padding: 0;
    margin-left: 8px;
}

.mrh-booking-circle-btn i {
    font-size: 18px;
    color: #555;
}

.mrh-booking-circle-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.22);
}

/* Request info button (leave your current styles) */
.mrh-booking-btn {
    /* your existing red button styles */
}


/* ============================================================
   15. Mobile Admin – Dashboard & Settings
   ============================================================ */

.mrh-admin-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left side of admin header (title + greeting) */
.mrh-admin-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Text block (title + sub) */
.mrh-admin-header-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Right side (logout link) */
.mrh-admin-header-right {
    display: flex;
    align-items: center;
}

.mrh-admin-header-title {
    font-size: 18px;
    font-weight: 600;
}

.mrh-admin-header-sub {
    font-size: 12px;
    color: #777;
}

.mrh-admin-header-right a {
    font-size: 13px;
    text-decoration: none;
    color: #008489;
}

.mrh-admin-page {
    padding: 16px;
}

.mrh-admin-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #eee;
}

.mrh-admin-welcome-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mrh-admin-welcome-sub {
    font-size: 13px;
    color: #666;
}

.mrh-admin-welcome-meta {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.mrh-admin-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mrh-admin-tile {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #eee;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90px;
    text-decoration: none;
    color: #111;
}

.mrh-admin-tile-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.mrh-admin-tile-sub {
    font-size: 12px;
    color: #777;
}

.mrh-admin-tile-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    margin-top: 8px;
    border: 1px solid #eee;
    background: #f7f7f7;
}

.mrh-admin-footer-note {
    font-size: 11px;
    color: #999;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 480px) {
    .mrh-admin-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   16. Mobile Admin – Account Settings (Pills Layout)
   ============================================================ */

.mrh-back-link-wrap {
  margin-bottom: 8px;
}

.mrh-back-link {
  font-size: 12px;
  text-decoration: none;
  color: #008489;
}

.mrh-back-link:hover {
  text-decoration: underline;
}

/* Top pill nav */
.mrh-settings-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 8px;
  padding: 8px 0 10px;
  margin-bottom: 10px;
}

.mrh-settings-nav::-webkit-scrollbar {
  display: none;
}

.mrh-settings-pill {
  flex: 0 0 auto;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e0e4ef;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
}

.mrh-settings-pill.active {
  background: #008489;
  border-color: #008489;
  color: #ffffff;
}

/* Sections */
.mrh-settings-section {
  display: none;
  margin-top: 4px;
}

.mrh-settings-section.active {
  display: block;
}

/* Group titles */
.mrh-settings-group-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mrh-settings-group-sub {
  font-size: 12px;
  color: #6f7a8a;
  margin-bottom: 12px;
}

/* Rows */
.mrh-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.mrh-settings-row:last-child {
  border-bottom: none;
}

.mrh-settings-row-label {
  font-size: 13px;
  font-weight: 500;
}

.mrh-settings-row-value {
  font-size: 12px;
  color: #6f7a8a;
}

/* Row action button (right side) */
.mrh-settings-row-action {
  border: none;
  background: #f4f6fb;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: #008489;
  cursor: pointer;
}

/* Info card */
.mrh-settings-card {
  margin-top: 14px;
  padding: 12px 12px 10px;
  border-radius: 12px;
  border: 1px solid #ffe4ea;
  background: #fff6f9;
}

.mrh-settings-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mrh-settings-card-text {
  font-size: 12px;
  color: #6f7a8a;
}

/* Toggle switch */
.mrh-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.mrh-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.mrh-switch-slider {
  position: absolute;
  inset: 0;
  background-color: #e5e7eb;
  border-radius: 999px;
  transition: 0.2s;
}

.mrh-switch-slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.2s;
}

.mrh-switch input:checked + .mrh-switch-slider {
  background-color: #008489;
}

.mrh-switch input:checked + .mrh-switch-slider:before {
  transform: translateX(16px);
}

/* Payment buttons */
.mrh-settings-primary-btn,
.mrh-settings-secondary-btn {
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  border: 1px solid transparent;
}

.mrh-settings-primary-btn {
  background: #008489;
  color: #ffffff;
}

.mrh-settings-secondary-btn {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #e0e4ef;
}

:root {
    --vh: 1vh;
}

.mrh-modal-sheet {
    height: calc(var(--vh) * 90); /* or 80 depending on taste */
    max-height: calc(var(--vh) * 90);
}

.mrh-settings-input {
    font-size: 16px !important;
    padding: 12px !important;
}

.mrh-settings-form-label {
    font-size: 16px !important;
    font-weight: 600;
}

.mrh-icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
}

.mrh-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    background: #ff5252;
    color: #fff;
    font-weight: 600;
}

.mrh-notify-icon {
    position: relative;
    padding: 6px;
    margin-right: 10px;
    font-size: 18px;
    color: #333;
}

.mrh-notify-icon i {
    font-size: 20px;
}

.mrh-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    background: #ff5252;
    color: white;
    font-weight: bold;
}

.mrh-admin-small-link {
    font-size: 13px;
    color: #03A9F8; /* your baby blue */
    text-decoration: none;
}

.mrh-admin-small-link:hover {
    text-decoration: underline;
}

/* Container stack on the My Listings page */
.mrh-listings-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

/* Compact row layout */
.mrh-listing-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    cursor: pointer;
}

/* Slightly dim offline listings */
.mrh-listing-row-offline {
    opacity: 0.7;
}

/* Thumbnail on the left */
.mrh-listing-row-photo {
    flex: 0 0 105px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: #eeeeee;
}

.mrh-listing-row-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text stack */
.mrh-listing-row-body {
    flex: 1 1 auto;
    min-width: 0;
}

/* Top line: title + status chip */
.mrh-listing-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 2px;
}

.mrh-listing-row-title {
    font-size: 12px; 
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Address & meta lines */
.mrh-listing-row-address,
.mrh-listing-row-meta,
.mrh-listing-row-meta-small {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mrh-listing-row-address {
    color: #666666;
}

.mrh-listing-row-meta {
    color: #333333;
    font-weight: 500;
    margin-top: 1px;
}

.mrh-listing-row-meta-small {
    font-size: 11px;
    color: #888888;
    margin-top: 1px;
}

/* Right-side mini actions */
.mrh-listing-row-actions {
    flex: 0 0 auto;
}

/* Existing chip class, tuned smaller */
.mrh-chip {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #e0f2ff;
}

/* Status color variations */
.chip-active { background: #e0f7ec; color: #0a8a4a; }
.chip-rented { background: #ffe4e4; color: #c62828; }
.chip-sold   { background: #ffe4e4; color: #b71c1c; }
.chip-pending{ background: #fff4e0; color: #f57c00; }

/* Small pill buttons */
.mrh-pill-sm {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #dddddd;
    font-size: 11px;
    text-decoration: none;
    color: #333333;
}

.mrh-pill-offline {
    border-color: #e53935;
    color: #e53935;
}

.mrh-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 10px 0;
}

.mrh-status-view {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.mrh-status-offline {
    color: #cc0000;
}

/* ========================================= */
/*   EDIT LISTING – STATUS FORM (MOBILE)     */
/*   Slightly reduced scale for consistency  */
/* ========================================= */

.mrh-edit-form {
    margin-top: 4px;
}

/* Form groups: tighter spacing */
.mrh-edit-form .mrh-settings-form-group {
    margin-bottom: 10px;
}

/* Labels: smaller, cleaner */
.mrh-edit-form .mrh-settings-form-label {
    display: block;
    font-size: 12px;          /* was 13px */
    font-weight: 500;
    color: #555;
    margin-bottom: 3px;
}

/* Inputs & selects: smaller, tighter, modern */
.mrh-edit-form .mrh-settings-input {
    width: 100%;
    font-size: 13px;          /* was 14px */
    font-weight: 400;
    font-family: inherit;
    padding: 7px 11px;        /* slightly smaller */
    border-radius: 12px;      /* was 999px — less bubbly */
    border: 1px solid #d7dbe4;
    background-color: #f9fafc;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

/* Dropdown arrow */
.mrh-edit-form select.mrh-settings-input {
    background-image:
        linear-gradient(45deg, transparent 50%, #9aa0b5 50%),
        linear-gradient(135deg, #9aa0b5 50%, transparent 50%);
    background-position:
        calc(100% - 16px) 50%,
        calc(100% - 10px) 50%;
    background-size: 5px 5px, 5px 5px; /* smaller arrow */
    background-repeat: no-repeat;
}

/* Focus state */
.mrh-edit-form .mrh-settings-input:focus {
    border-color: #03A9F8;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(3,169,248,0.18);
}

/* Read-only fields */
.mrh-edit-form .mrh-settings-input[readonly] {
    background-color: #f3f4f7;
    color: #6e7382;
}

/* Status chip (inside form) */
.mrh-edit-form .mrh-chip {
    font-size: 10px;          /* was 11px */
    padding: 2px 6px;
    border-radius: 8px;
}

/* Info/help text */
.mrh-edit-form .mrh-settings-card-text {
    font-size: 11px;          /* slightly smaller */
    line-height: 1.35;
    color: #666;
}

/* Save button (slightly smaller) */
.mrh-edit-form .mrh-settings-primary-btn {
    width: 100%;
    margin-top: 8px;
    padding: 8px 10px;         /* smaller */
    font-size: 13px;           /* was 14px */
    border-radius: 12px;       /* softened */
}
/* ========================================= */
/*   EDIT LISTING – HEADER WITH THUMBNAIL    */
/* ========================================= */

.mrh-edit-header {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

/* Row 1: listing label */
.mrh-edit-header-title {
    font-size: 16px;          /* slightly smaller per your note */
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

/* Row 2: image + address side by side */
.mrh-edit-header-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Image */
.mrh-edit-header-photo img {
    width: 311px;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #e0e2ea;
}

/* Address column */
.mrh-edit-header-info {
    flex: 1;
    min-width: 0;
}

.mrh-edit-header-address {
    font-size: 14px;
    line-height: 1.3;
    color: #444;
    font-weight: 500;
}

/* Row 3: helper text */
.mrh-edit-header-desc {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.mrh-pill-sm-unread {
    background-color: #ffe5e5;      /* faint red background */
    color: #b30000;                 /* dark red text */
    
    border: 1px solid #cccccc;      /* light gray border */
    border-radius: 12px;
    
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    
    display: inline-block;
    line-height: 1;
}
.mrh-header-icon svg {
  display: block;
}


/* =========================
   Messages Tile - iOS vibe
========================= */
.mrh-admin-tile-messages{
    position:relative;
    overflow:hidden;
    text-decoration:none;
    color:rgb(15,23,42);
    min-height:190px;
    padding:18px;
    border-radius:24px;
    background:
        linear-gradient(145deg,
            rgba(255,255,255,.96) 0%,
            rgba(248,250,252,.96) 45%,
            rgba(239,246,255,.98) 100%);
    border:1px solid rgba(148,163,184,.18);
    box-shadow:
        0 10px 30px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.65);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:14px;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mrh-admin-tile-messages:before{
    content:"";
    position:absolute;
    top:-40px;
    right:-35px;
    width:130px;
    height:130px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(59,130,246,.18) 0%,
        rgba(59,130,246,.08) 45%,
        rgba(59,130,246,0) 75%);
    pointer-events:none;
}

.mrh-admin-tile-messages:after{
    content:"";
    position:absolute;
    bottom:-55px;
    left:-40px;
    width:150px;
    height:150px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(16,185,129,.14) 0%,
        rgba(16,185,129,.05) 45%,
        rgba(16,185,129,0) 75%);
    pointer-events:none;
}

.mrh-admin-tile-messages:hover,
.mrh-admin-tile-messages:active{
    transform:translateY(-2px);
    box-shadow:
        0 16px 34px rgba(15,23,42,.14),
        inset 0 1px 0 rgba(255,255,255,.72);
    border-color:rgba(59,130,246,.22);
}

.mrh-msg-tile-top{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.mrh-msg-icons-wrap{
    display:flex;
    align-items:center;
    gap:10px;
}

.mrh-msg-icon-bubble{
    width:48px;
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
        0 8px 18px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.35);
    backdrop-filter:blur(6px);
}

.mrh-msg-icon-bubble svg{
    width:24px;
    height:24px;
    fill:white;
    display:block;
}

.mrh-msg-icon-mail{
    background:linear-gradient(135deg, rgb(59,130,246), rgb(37,99,235));
}

.mrh-msg-icon-chat{
    background:linear-gradient(135deg, rgb(34,197,94), rgb(22,163,74));
}

.mrh-msg-counter{
    min-width:34px;
    height:34px;
    padding:0 10px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:900;
    letter-spacing:.2px;
    color:white;
    background:linear-gradient(135deg, rgb(239,68,68), rgb(220,38,38));
    box-shadow:0 8px 18px rgba(220,38,38,.28);
}

.mrh-msg-content{
    position:relative;
    z-index:2;
}

.mrh-admin-tile-messages .mrh-admin-tile-title{
    font-size:22px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:8px;
    color:rgb(15,23,42);
}

.mrh-admin-tile-messages .mrh-admin-tile-sub{
    font-size:14px;
    line-height:1.5;
    color:rgb(71,85,105);
    max-width:95%;
}

.mrh-msg-footer{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.mrh-msg-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(148,163,184,.18);
    font-size:12px;
    font-weight:800;
    color:rgb(37,99,235);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

.mrh-msg-chevron{
    width:34px;
    height:34px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(148,163,184,.18);
}

.mrh-msg-chevron svg{
    width:18px;
    height:18px;
    fill:rgb(37,99,235);
    display:block;
}









