/* HEADER */

.booking-header-section {
  text-align: center;
  padding: 80px 20px 50px;
}

.booking-header-section h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-header-section p {
  opacity: 0.7;
}

/* SECTION */

.booking-section {
  padding: 40px 20px;
}

/* CONTAINER */

.booking-container {
  max-width: 1000px;
  margin: auto;
}

/* GRID */

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

/* hide empty grids */

.booking-grid:empty {
  display: none;
}

/* CARD */

.booking-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  border-radius: 18px;

  padding: 24px;

  transition: 0.35s;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* TEXT */

.booking-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.booking-meta {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 5px;
}

/* STATUS */

.booking-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 8px;
}

.status-pending {
  background: #ffd54f;
  color: black;
}

.status-confirmed {
  background: linear-gradient(45deg, #4caf50, #00e676);
}

.status-completed {
  background: linear-gradient(45deg, #2196f3, #00c6ff);
}

/* BUTTONS */

.booking-actions {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.booking-actions button {
  flex: 1;

  padding: 9px;

  border: none;

  border-radius: 8px;

  cursor: pointer;

  font-size: 13px;

  font-weight: 500;

  transition: 0.25s;
}

/* VIEW */

.view-btn {
  background: linear-gradient(45deg, #00d4ff, #00f2ff);
  color: black;
}

.view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.5);
}

/* CANCEL */

.cancel-btn {
  background: linear-gradient(45deg, #ff4d4d, #ff1e56);
  color: white;
}

.cancel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 0, 80, 0.5);
}

/* REVIEW */

.review-btn {
  background: linear-gradient(45deg, #6a4cff, #9f7bff);
  color: white;
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(106, 76, 255, 0.6);
}

/* EMPTY MODAL */

.no-bookings-modal {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  display: none;

  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(8px);

  z-index: 9999;
}

.no-bookings-box {
  background: white;
  color: black;

  padding: 40px;

  border-radius: 16px;

  text-align: center;

  width: 350px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.primary-btn {
  margin-top: 20px;

  padding: 10px 20px;

  border: none;

  border-radius: 8px;

  background: linear-gradient(45deg, #00d4ff, #009dff);

  color: white;

  font-weight: 600;

  cursor: pointer;
}

.primary-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}
