.bookingHistory_container {
  padding: 2rem 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.bookingHistory_card {
  background: #ffffff;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1.5rem;
  height: 100%;
}

.bookingHistory_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.bookingHistory_status {
  background-color: rgba(249, 169, 78, 0.12);
  color: #f9a94e;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bookingHistory_filter-btn {
  border: 2px solid #f9a94e;
  color: #f9a94e;
  min-width: 140px;
  padding: 0.6rem 1.8rem;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 8px;
}

.bookingHistory_filter-btn.active {
  background-color: #f9a94e;
  color: white !important;
  box-shadow: 0 4px 6px rgba(249, 169, 78, 0.2);
}

.bookingHistory_payment-status {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.bookingHistory_detail-label {
  color: #6c757d;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.bookingHistory_detail-value {
  color: #2d3748;
  font-weight: 400;
  font-size: 0.95rem;
}

.bookingHistory_section {
  display: none;
}

.bookingHistory_reference-id {
  color: #f9a94e;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* Chat Modal */
/* .bookingHistory_chat-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-height: 400px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: fadeIn 0.3s ease-in-out;
  border: 1px solid #ddd;
} */

/* Chat Header */
.bookingHistory_chat-header {
  background: #f9a94e;
  color: white;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Chat Body */
/* .bookingHistory_chat-body {
  padding: 10px;
  flex: 1;
  overflow-y: auto;
  max-height: 280px;
  font-size: 14px;
} */

/* Chat Footer (Input & Send Button) */
.bookingHistory_chat-footer {
  padding: 10px;
  border-top: 1px solid #eee;
  display: flex;
  background: #f9f9f9;
}

/* Input Field */
.bookingHistory_chat-footer input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* Send Button */
.bookingHistory_chat-footer button {
  background: #f9a94e;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.bookingHistory_chat-footer button:hover {
  background: #e88c36;
}

/* Close Button */
.bookingHistory_chat-header .btn-close {
  background: white;
  border-radius: 50%;
  opacity: 0.8;
}

.bookingHistory_chat-header .btn-close:hover {
  opacity: 1;
}

/* Smooth Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
