/* My Bookings - Header */

.alq-my-bookings-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.alq-my-bookings-container {
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

ul.alq-my-bookings-filter-status {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

li.alq-filter-status {
  text-align: center;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
  border: 1px solid var(--border);
  border-radius: 8px;
  user-select: none;
  cursor: pointer;
  color: var(--heading);
  transition: background 0.3s ease, border 0.3s ease;
}

li.alq-filter-status:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

li.alq-filter-status.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.alq-my-bookings-filter-date {
  display: flex;
  align-items: center;
  gap: 10px;
}

button#alq_reload_my_bookings {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  line-height: 1.5;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--label);
  font-family: "Inter";
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s ease, border 0.2s ease;
}

button#alq_reload_my_bookings:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* My Bookings - Body */

.alq-mbc-image {
  width: 128px;
  min-width: 128px;
}

.alq-mbc-image img {
  width: 128px !important;
  height: 128px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
}

.alq-mbc-content {
  flex-grow: 1;
}

.alq-my-booking-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  background: white;
}

span.alq-mb-id {
  display: block;
  font-family: "Inter";
  line-height: 1.3;
  font-weight: 400;
  color: var(--lable);
  font-size: 14px;
}

.alq-mbc-status {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-family: "Inter";
  line-height: 1.3;
  background: rgba(0, 0, 0, 0.05);
}

.alq-mbc-status.pending {
  background: var(--yellow-light);
  color: var(--yellow);
}

.alq-mbc-status.completed {
  background: var(--blue-light);
  color: var(--blue);
}

.alq-mbc-status.activated {
  background: var(--green-light);
  color: var(--green);
}

ul.alq-mb-meta {
  display: flex;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
  margin-bottom: 16px;
}

ul.alq-mb-meta li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

span.alq-mb-meta-label {
  font-size: 14px;
  color: var(--dark-grey);
  line-height: 1.3;
  font-family: "Inter";
  font-weight: 400;
  display: block;
}

span.alq-mb-meta-value {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--label);
  font-family: "Inter";
  line-height: 1.3;
}

span.alq-mb-meta-value i {
  color: var(--orange);
}

ul.alq-mb-actions {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

button.alq_orange_button {
  padding: 8px 16px;
  line-height: 1.5;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter";
  color: #fff;
  background: var(--orange);
  box-shadow: none;
}

button.alq_orange_button a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none !important;
  font-size: 14px;
  gap: 5px;
  font-weight: 400;
  font-family: "Inter";
}

button.alq_white_button {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  gap: 5px;
  color: white;
  background: white;
  border-radius: 8px;
  padding: 8px 16px;
  color: var(--label);
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

button.alq_white_button:hover {
  background: #f9fafb;
}

.alq-my-booking-card {
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}

input#alq-filter-by-date {
  font-size: 15px;
  font-family: "Inter";
  line-height: 1.3;
  height: auto !important;
  color: var(--heading);
  border-radius: 8px;
  background: #f3f4f6;
  border: none;
  max-width: 240px;
}

.alq-bookings-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 25px;
}

.alq-bookings-pagination > a {
  width: 35px;
  height: 35px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-family: "Inter";
  line-height: 1.5;
  text-decoration: none !important;
  color: var(--heading);
  font-weight: 400 !important;
}

.alq-bookings-pagination > a.active {
  background: var(--orange);
  color: white;
  border-color: white;
}

@media (max-width: 1024px) {
  .alq-my-booking-card {
    flex-wrap: wrap;
  }

  ul.alq-mb-meta {
    flex-wrap: wrap;
  }

  ul.alq-mb-actions {
    flex-wrap: wrap;
  }

  .alq-my-bookings-header {
    flex-wrap: wrap;
  }

  .alq-my-bookings-filter-date {
    width: 100%;
  }

  ul.alq-my-bookings-filter-status {
    width: 100%;
  }

  .alq-my-bookings-filter-date {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .alq-mbc-status {
    position: absolute;
    right: 24px;
    top: 24px;
  }

  .alq-mbc-image {
    width: 100%;
  }

  .alq-mbc-image img {
    width: 100% !important;
    height: 250px !important;
  }
}

@media (max-width: 767px) {
  .alq-my-booking-card {
    padding: 16px;
  }
}
