/* Full-width section friendly */
.mango-booking-outer{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

/* This is the magic: narrow enough to trigger Mangomint's single-column layout */
.mango-booking-card{
  width: 100%;
  max-width: 500px;   /* try 520–620 depending on the look you want */
  border-radius: 18px;
  overflow: hidden;   /* ensures rounded corners actually clip the iframe */
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  background: #fff;
}

.mango-booking-frame{
  width: 100%;
  height: 980px;      /* bump if needed */
  border: 0;
  display: block;
}

/* Mobile */
@media (max-width: 768px){
  .mango-booking-outer{
    padding: 30px 12px;
  }
  .mango-booking-card{
    max-width: 100%;
    border-radius: 14px;
  }
  .mango-booking-frame{
    height: 1150px;
  }
}