/* =====================================================
   MyHotel Booking – Frontend Styles
   ===================================================== */

:root {
  --mhb-primary:     #148992;
  --mhb-accent:      #cccc;
  --mhb-accent-dark: #a8832f;
  --mhb-text:        #1e293b;
  --mhb-muted:       #64748b;
  --mhb-border:      #e2e8f0;
  --mhb-bg:          #f8fafc;
  --mhb-white:       #ffffff;
  --mhb-radius:      10px;
  --mhb-shadow:      0 4px 20px rgba(0,0,0,.08);
  --mhb-font:        "Poppins", Sans-serif;
}

/* ---- LISTING GRID ---- */
.mhb-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  padding: 20px 0;
}
button.mhb-tab-btn.active, button.mhb-tab-btn.active:hover, button.mhb-tab-btn.active:active, button.mhb-tab-btn.active:focus, button.mhb-tab-btn:hover {
    background: #148992 !important;
    color: white !important;
}

.mhb-card {
  background: var(--mhb-white);
  border-radius: var(--mhb-radius);
  overflow: hidden;
  box-shadow: var(--mhb-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  font-family: var(--mhb-font);
}
.mhb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
}

.mhb-card-img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  height: 220px;
}
.mhb-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.mhb-card:hover .mhb-card-img-wrap img { transform: scale(1.04); }

.mhb-card-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  backdrop-filter: blur(4px);
}

.mhb-card-body { padding: 20px; }

.mhb-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
}
.mhb-card-title a {
  color: var(--mhb-primary);
  text-decoration: none;
}
.mhb-card-title a:hover { color: var(--mhb-accent-dark); }

.mhb-card-facilities {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mhb-card-facilities li {
  background: var(--mhb-bg);
  border: 1px solid var(--mhb-border);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--mhb-muted);
}

.mhb-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--mhb-border);
  padding-top: 14px;
  margin-top: 4px;
}

.mhb-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--mhb-primary);
}
.mhb-from { font-size: 12px; font-weight: 400; color: var(--mhb-muted); display: block; }
.mhb-night { font-size: 12px; font-weight: 400; color: var(--mhb-muted); }

.mhb-card-btn, .mhb-card-btn:hover {
  background: white;
  background: var(--mhb-primary);
	color: white;
	border: 1px solid var(--mhb-primary) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.mhb-card-btn:hover { background: var(--mhb-accent-dark); color: #fff; }

/* ---- SINGLE PAGE ---- */
.mhb-single-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 20px 60px;
  font-family: var(--mhb-font);
}

.mhb-breadcrumb {
  font-size: 13px;
  color: var(--mhb-muted);
  margin-bottom: 16px;
}
.mhb-breadcrumb a { color: var(--mhb-primary); text-decoration: none; }
.mhb-breadcrumb span { margin: 0 6px; }

.mhb-single-title {
  font-size: 34px;
  color: var(--mhb-primary);
  margin: 0 0 24px;
  line-height: 1.2;
}

/* ---- GALLERY ---- */
.mhb-gallery-section {
  margin-bottom: 36px;
  border-radius: var(--mhb-radius);
  overflow: hidden;
}

.mhb-main-slider {
  border-radius: var(--mhb-radius);
  overflow: hidden;
  box-shadow: var(--mhb-shadow);
}
.mhb-main-slider .swiper-slide {
  height: 480px;
}
.mhb-main-slider .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mhb-main-slider .swiper-button-next,
.mhb-main-slider .swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,.35);
  width: 44px; height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.mhb-main-slider .swiper-button-next::after,
.mhb-main-slider .swiper-button-prev::after { font-size: 18px; }

.mhb-thumbs-slider {
  margin-top: 12px;
  height: 80px;
}
.mhb-thumbs-slider .swiper-slide {
  width: 80px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
  border-radius: 6px;
  overflow: hidden;
}
.mhb-thumbs-slider .swiper-slide.swiper-slide-thumb-active { opacity: 1; outline: 2px solid var(--mhb-accent); }
.mhb-thumbs-slider .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- CONTENT LAYOUT ---- */
.mhb-content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}
@media (max-width: 860px) {
  .mhb-content-layout { grid-template-columns: 1fr; }
  .mhb-main-slider .swiper-slide { height: 260px; }
}

/* ---- TABS ---- */
.mhb-tabs {
  display: flex;
  border-bottom: 2px solid var(--mhb-border);
  margin-bottom: 24px;
  gap: 4px;
}
.mhb-tab-btn {
  padding: 10px 22px;
  border: none;
  background: transparent;
  font-family: var(--mhb-font);
  font-size: 15px;
  color: var(--mhb-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.mhb-tab-btn:hover { color: var(--mhb-primary); }
.mhb-tab-btn.active { color: var(--mhb-primary); border-bottom-color: var(--mhb-accent); font-weight: 700; }

.mhb-tab-content { display: none; }
.mhb-tab-content.active { display: block; }

.mhb-description-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mhb-text);
}

.mhb-quick-facts {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 20px;
  background: var(--mhb-bg);
  border-radius: var(--mhb-radius);
  border: 1px solid var(--mhb-border);
}
.mhb-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}
.mhb-fact-label { font-size: 12px; color: var(--mhb-muted); text-transform: uppercase; letter-spacing: .5px; }
.mhb-fact-value { font-size: 20px; font-weight: 700; color: var(--mhb-primary); }

/* ---- FACILITIES ---- */
/* Container to hold the items in a row */
.mhb-facilities-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between the tabs */
    padding: 10px 0;
}

/* Individual Tab/Tag styling */
.mhb-facility-tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: #f0f0f0; /* Light gray background */
    border: 1px solid #ddd;
    border-radius: 10px; /* Rounded pill shape */
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

/* Optional: Hover effect */
.mhb-facility-tag:hover {
    background-color: var(--mhb-primary);
    color: #fff;
    border-color: var(--mhb-primary);
}

/* ---- ADD INFO ---- */
.mhb-add-info-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mhb-text);
}

/* ---- BOOKING SIDEBAR ---- */
.mhb-booking-sidebar { position: sticky; top: 20px; }

.mhb-booking-card {
  background: var(--mhb-white);
  border-radius: var(--mhb-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  overflow: hidden;
}

.mhb-booking-header {
  background: var(--mhb-primary);
  padding: 22px 24px;
  text-align: center;
}
.mhb-price-display { color: #fff; }
.mhb-price-from { display: block; font-size: 12px; opacity: .7; letter-spacing: .5px; text-transform: uppercase; }
.mhb-price-amount { font-size: 36px; font-weight: 700; display: block; font-family: "Poppins", Sans-serif }
.mhb-price-unit { font-size: 13px; opacity: .7; }

.mhb-booking-form { padding: 24px; }

.mhb-form-row {
  margin-bottom: 16px;
}
.mhb-form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--mhb-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.mhb-form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mhb-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--mhb-font);
  color: var(--mhb-text);
  background: var(--mhb-white);
  box-sizing: border-box;
  transition: border-color .2s;
  appearance: none;
}
.mhb-form-input:focus {
  outline: none;
  border-color: var(--mhb-accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

/* ---- PRICE BREAKDOWN ---- */
.mhb-price-breakdown {
  background: var(--mhb-bg);
  border: 1px solid var(--mhb-border);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 14px;
}
.mhb-breakdown-row {
  display: flex;
  justify-content: space-between;
  color: var(--mhb-muted);
  margin-bottom: 10px;
}
.mhb-breakdown-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--mhb-primary);
  border-top: 1px solid var(--mhb-border);
  padding-top: 10px;
}

/* ---- FORM MESSAGE ---- */
.mhb-form-message {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}
.mhb-form-message.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.mhb-form-message.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ---- BOOK BUTTON ---- */
.mhb-book-btn {
  width: 100%;
  padding: 15px;
  background: var(--mhb-accent);
  color: var(--mhb-primary);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--mhb-font);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background .2s, transform .15s;
}
.mhb-book-btn:hover:not(:disabled) {
  background: var(--mhb-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}
.mhb-book-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}
button.mhb-book-btn {
    background: var(--mhb-primary);
    border: 1px solid var(--mhb-primary);
    color: white;
}

button.mhb-book-btn:hover, button.mhb-book-btn:active, button.mhb-book-btn:focus {
    color: var(--mhb-primary) !important;
    background: white !important;
    border: 1px solid var(--mhb-primary);
}
/* ---- Flatpickr override ---- */
.flatpickr-calendar { font-family: var(--mhb-font); }
.flatpickr-day.flatpickr-disabled {
    background: #14899242 !important;
    color: #353535 !important;
    text-decoration: line-through;
}

/* =====================================================
   MHB Booking Request Form (replaces cart form)
   ===================================================== */
.mhb-booking-card { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); background: #fff; }
.mhb-booking-header { background: #148992; padding: 22px 24px; text-align: center; }
.mhb-price-display { color: #fff; }
.mhb-price-from   { display: block; font-size: 11px; opacity: .7; letter-spacing: .5px; text-transform: uppercase; }
.mhb-price-amount { font-size: 36px; font-weight: 700; display: block; }
.mhb-price-unit   { font-size: 12px; opacity: .7; }
.mhb-price-sub    { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; display: block; }

.mhb-booking-form { padding: 24px; }
.mhb-form-row     { margin-bottom: 16px; }
.mhb-form-label   { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #888; margin-bottom: 6px; font-weight: 700; }
.mhb-form-input   { width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 7px; font-size: 14px; font-family: inherit; color: #1a1a1a; background: #fafafa; box-sizing: border-box; transition: border-color .2s; }
.mhb-form-input:focus { outline: none; border-color: #148992; box-shadow: 0 0 0 3px rgba(20,137,146,.1); background: #fff; }
.mhb-form-input[readonly] { background: #f4f6f5; cursor: pointer; }

/* Price breakdown */
.mhb-price-breakdown  { background: #f7fafa; border: 1px solid #e4eeee; border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; font-size: 13px; }
.mhb-breakdown-row    { display: flex; justify-content: space-between; color: #666; margin-bottom: 6px; }
.mhb-breakdown-row.wd { color: #888; }
.mhb-breakdown-row.we { color: #888; }
.mhb-breakdown-total  { display: flex; justify-content: space-between; font-size: 17px; font-weight: 700; color: #148992; border-top: 1px solid #e4eeee; padding-top: 10px; margin-top: 4px; }

/* Login gate notice */
.mhb-login-gate { background: #e6f4f5; border: 1px solid #cce8e9; border-radius: 8px; padding: 14px 16px; margin-bottom: 14px; font-size: 13px; color: #0f6b71; text-align: center; }
.mhb-login-gate a { color: #148992; font-weight: 700; }

/* Notes textarea */
.mhb-form-textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 7px; font-size: 13px; font-family: inherit; resize: vertical; box-sizing: border-box; color: #1a1a1a; background: #fafafa; transition: border-color .2s; }
.mhb-form-textarea:focus { outline: none; border-color: #148992; background: #fff; }

/* Form messages */
.mhb-form-message { padding: 11px 14px; border-radius: 7px; font-size: 13px; margin-bottom: 14px; }
.mhb-form-message.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.mhb-form-message.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Book / Request button */
.mhb-book-btn { width: 100%; padding: 14px; background: #148992; color: #fff; font-size: 15px; font-weight: 700; font-family: inherit; border: none; border-radius: 7px; cursor: pointer; letter-spacing: .2px; transition: background .2s, transform .15s; }
.mhb-book-btn:hover:not(:disabled) { background: #0f6b71; transform: translateY(-1px); }
.mhb-book-btn:disabled { opacity: .55; cursor: not-allowed; }
.mhb-btn-loader { display: none; }

/* =====================================================
   MHB Chat Widget (hotel page floating button)
   ===================================================== */
.mhb-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.mhb-chat-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #148992;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(20,137,146,0.35);
    transition: background .2s, transform .2s;
}
.mhb-chat-toggle:hover { background: #0f6b71; transform: translateY(-2px); }

.mhb-chat-popup {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    flex-direction: column;
    overflow: hidden;
}
.mhb-chat-popup-header {
    background: #148992;
    padding: 16px 18px;
    color: #fff;
}
.mhb-chat-popup-header span { display: block; font-size: 15px; font-weight: 700; }
.mhb-chat-popup-header small { font-size: 12px; opacity: .8; }
.mhb-chat-popup-body { padding: 16px; }
.mhb-chat-popup-body textarea {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
    resize: none;
    box-sizing: border-box;
    outline: none;
    margin-bottom: 10px;
    transition: border-color .2s;
}
.mhb-chat-popup-body textarea:focus { border-color: #148992; }
.mhb-chat-popup-body button[type=submit] {
    width: 100%;
    padding: 10px;
    background: #148992;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}
.mhb-chat-popup-body button[type=submit]:hover { background: #0f6b71; }
.mhb-chat-popup-body button:disabled { opacity: .6; cursor: not-allowed; }

/* =====================================================
   MHB Chat App (message page - customer)
   ===================================================== */
.mhb-chat-app {
    display: flex;
    height: 80vh;
    min-height: 500px;
    border: 1px solid #e4eeee;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f0f2f5;
    margin: 0 -16px;
}
.mhb-chat-sidebar {
    width: 280px;
    min-width: 280px;
    background: #fff;
    border-right: 1px solid #e4e6ea;
    display: flex;
    flex-direction: column;
}
.mhb-chat-sidebar-header {
    padding: 16px;
    border-bottom: 1px solid #e4e6ea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mhb-chat-sidebar-header h3 { margin: 0; font-size: 15px; font-weight: 700; color: #1a1a1a; }
.mhb-chat-back-link { font-size: 12px; color: #148992; text-decoration: none; }
.mhb-chat-contacts { flex: 1; overflow-y: auto; }
.mhb-chat-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .15s;
}
.mhb-chat-contact:hover { background: #f7fafa; }
.mhb-chat-contact.active { background: #e6f4f5; border-left: 3px solid #148992; }
.mhb-contact-avatar {
    width: 38px; height: 38px;
    background: #148992;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mhb-contact-info { flex: 1; min-width: 0; }
.mhb-contact-name { font-size: 13px; font-weight: 600; color: #1a1a1a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mhb-contact-preview { font-size: 12px; color: #aaa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mhb-contact-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.mhb-contact-time { font-size: 11px; color: #bbb; }
.mhb-contact-unread { background: #148992; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; }
.mhb-chat-no-contacts { padding: 40px 16px; text-align: center; color: #bbb; font-size: 13px; }

.mhb-chat-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.mhb-chat-topbar { background: #fff; padding: 13px 18px; border-bottom: 1px solid #e4e6ea; }
.mhb-chat-topbar-name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.mhb-chat-topbar-sub { font-size: 12px; color: #888; }

.mhb-chat-thread {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mhb-chat-thread-empty { text-align: center; color: #bbb; font-size: 13px; margin: auto; }

.mhb-chat-msg { display: flex; flex-direction: column; max-width: 72%; }
.mhb-chat-msg.mine { align-self: flex-end; align-items: flex-end; }
.mhb-chat-msg.theirs { align-self: flex-start; align-items: flex-start; }
.mhb-chat-msg-bubble { padding: 10px 14px; border-radius: 16px; font-size: 14px; line-height: 1.5; word-break: break-word; }
.mhb-chat-msg.mine .mhb-chat-msg-bubble { background: #148992; color: #fff; border-bottom-right-radius: 4px; }
.mhb-chat-msg.theirs .mhb-chat-msg-bubble { background: #fff; color: #1a1a1a; border: 1px solid #e4e6ea; border-bottom-left-radius: 4px; }
.mhb-chat-msg-file { margin-top: 6px; font-size: 12px; }
.mhb-chat-msg-file a { color: inherit; text-decoration: underline; display: flex; align-items: center; gap: 4px; }
.mhb-chat-msg-time { font-size: 10px; color: #aaa; margin-top: 4px; }

.mhb-chat-compose { background: #fff; border-top: 1px solid #e4e6ea; padding: 12px 14px; }
.mhb-compose-row { display: flex; gap: 8px; align-items: flex-end; }
.mhb-compose-row textarea {
    flex: 1;
    padding: 9px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    outline: none;
    min-height: 38px;
    max-height: 120px;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color .2s;
}
.mhb-compose-row textarea:focus { border-color: #148992; }
.mhb-attach-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #888;
    flex-shrink: 0;
    transition: background .2s;
}
.mhb-attach-btn:hover { background: #e6f4f5; color: #148992; }
.mhb-send-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #148992;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
    transition: background .2s;
}
.mhb-send-btn:hover { background: #0f6b71; }
.mhb-send-btn:disabled { opacity: .5; cursor: not-allowed; }
.mhb-file-preview { display: none; align-items: center; gap: 8px; padding: 5px 8px; background: #f0f9fa; border-radius: 6px; margin-top: 6px; font-size: 12px; color: #148992; }
.mhb-file-clear { background: none; border: none; cursor: pointer; color: #999; font-size: 13px; }
.mhb-msg-error { font-size: 12px; color: #ef4444; margin-top: 5px; }
.mhb-chat-empty-state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #bbb; gap: 10px; }
.mhb-chat-empty-state p { font-size: 14px; }

@media (max-width: 640px) {
    .mhb-chat-app { height: 90vh; margin: 0; border-radius: 0; }
    .mhb-chat-sidebar { width: 72px; min-width: 72px; }
    .mhb-contact-info, .mhb-contact-meta, .mhb-chat-sidebar-header h3, .mhb-chat-back-link { display: none; }
    .mhb-chat-popup { width: calc(100vw - 40px); right: -14px; }
    .mhb-chat-widget { bottom: 16px; right: 16px; }
}
