.mybookings-page {
  padding-top: 8px;
}

/* MOBILE CLEAN LOOK */
@media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }

  .container {
    padding-top: 0 !important;
  }
}


/* HEADER */
.mybookings-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.back-btn {
  font-size: 22px;
  text-decoration: none;
  color: #000;
}

.mybookings-header h2 {
  font-size: 20px;
  font-weight: 600;
}

/* TABS */
.booking-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.tab {
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.tab.active {
  color: #4f6df5;
  border-bottom: 3px solid #4f6df5;
  font-weight: 600;
}

/* NO DATA */
.no-bookings {
  text-align: center;
  margin-top: 60px;
}

.no-bookings img {
  /* max-width: 260px; */
  margin-bottom: 20px;
}

.no-bookings h3 {
  color: #4f6df5;
  font-size: 22px;
}

/* BOOKING CARD */
.booking-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 10px;
  margin-bottom: 14px;
}

.booking-left img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
}

.booking-right h4 {
  font-size: 15px;
  margin: 0;
}

.booking-right p {
  font-size: 13px;
  margin: 2px 0;
  color: #444;
}

/* STATUS */
.status {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 6px;
  margin: 4px 0;
}

.status.confirmed {
  background: #e6f4ea;
  color: #1e7f3f;
}

.status.cancelled {
  background: #fdecea;
  color: #b42318;
}

.status.pending {
  background: #fff4e5;
  color: #b54708;
}
.booking-tabs {
  display: flex;
  justify-content: space-around;
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 10px;
}

.tab-btn {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
}

.tab-btn.active {
  color: #4f6df5;
  font-weight: 600;
}

.tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background: #4f6df5;
  transition: transform 0.3s ease;
}

.tab-content {
  display: none;
  animation: fadeSlide 0.3s ease;
}

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

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= MY BOOKINGS TABS ================= */

.booking-tabs {
  display: flex;
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.tab-btn {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
}

.tab-btn.active {
  color: #4f6df5;
  font-weight: 600;
}

.tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background: #4f6df5;
  transition: transform 0.3s ease;
}

.tab-content {
  display: none;
  animation: fadeSlide 0.3s ease;
}

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

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-bookings {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-booking-img {
  max-width: 700px;
  width: 80%;
  opacity: 0.95;
}


/* ===============================
   PRIVACY POLICY PAGE
================================ */

.privacy-content {
  padding: 16px 14px 40px;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  color: #111;
}

.privacy-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 12px;
}

.privacy-content h5 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 8px;
}

.privacy-content h6 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
}

.privacy-content p {
  font-size: 13px;
  color: #333;
  margin-bottom: 12px;
}

/* MOBILE SPACING LIKE BOOKINGS */
@media (max-width: 768px) {
  .privacy-content {
    padding: 14px 12px 50px;
  }

  .privacy-content p {
    font-size: 13px;
  }
}

/* DESKTOP READABILITY */
@media (min-width: 992px) {
  .privacy-content {
    max-width: 900px;
    margin: auto;
    padding: 24px 20px 60px;
  }

  .privacy-content p {
    font-size: 14px;
  }
}

.download-btn {
  display: inline-block;
  margin-top: 6px;
  background: #ff385c;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
}

.download-btn:hover {
  opacity: 0.9;
}