.booking-page {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top:120px;
    padding-bottom:45px;
  }
  
  .booking-bg {
    position: absolute;
    inset: 0;
    /* background: url("https://images.unsplash.com/photo-1501117716987-c8e2a8f5a9c0") no-repeat center/cover; */
    filter: blur(6px);
    z-index: 0;
  }
  
  .booking-container {
    position: relative;
    padding-top:120px;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 249, 249, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }
  
  .booking-title {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .booking-info {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .booking-form .form-group {
    margin-bottom: 1rem;
  }
  
  .booking-form input {
    width: 100%;
    padding: 0.6rem;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  
  .booking-btn {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 10px;
    background-color: #ff385c;
    color: white;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .booking-btn:hover {
    background-color: #e03150;
  }

  .theme-dark .booking-bg {
    filter: blur(6px) brightness(0.5);
  }
  
  .theme-dark .booking-container {
    background: rgba(30, 30, 30, 0.9);
    color: #f1f1f1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  }
  
  .theme-dark .booking-form input {
    background-color: #2a2a2a;
    border: 1px solid #555;
    color: #f1f1f1;
  }
  
  .theme-dark .booking-form input::placeholder {
    color: #aaa;
  }
  
  .theme-dark .booking-btn {
    background-color: #ff385c;
  }
  
  .theme-dark .booking-btn:hover {
    background-color: #ff5a75;
  }

  .booking-heading{
    color:rgb(0, 0, 0);
  }

  .theme-dark .booking-heading{
    color: #f1f1f1;
  }

  .cancel-btn{
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 10px;
    background-color: #ccc;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
  }

  .booked-page{
    padding-top:120px;
  }

  .theme-dark .booked-page{
    background-color: black;
  }

  .booked-hotel-image{
    padding:0;
  }

  .theme-dark .booking-status{
    color: #f1f1f1;
  }

  body.theme-dark {
    background-color: #121212;
    color: white;
  }

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px;
}

.hotel-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.theme-dark .hotel-card{
  background:#121212;
}

.hotel-card:hover {
  transform: translateY(-5px);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hotel-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 12px 14px;
}

.card-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.location {
  font-size: 13px;
  color: #aaa;
}

.price {
  margin-top: 5px;
  font-weight: bold;
}

.dates {
  font-size: 12px;
  color: black;
  margin-top: 6px;
}

.theme-dark .dates {
  color: #f1f1f1;
}

.card-actions {
  padding: 12px 14px;
}

.cancel-btn {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: #ff4d4d;
  color: white;
  cursor: pointer;
}

.cancel-btn.disabled {
  background: #555;
  cursor: not-allowed;
}

.status {
  margin-bottom: 8px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}