@charset "UTF-8";
/**
 * Restaurant Booking Styles
 * Tùy chỉnh giao diện cho chức năng đặt xe từ trang danh sách nhà hàng
 */
.book-taxi-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden; }

.book-taxi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3); }

.book-taxi-btn:active {
  transform: translateY(0); }

.book-taxi-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s; }

.book-taxi-btn:hover::before {
  left: 100%; }

/* Loading state cho nút */
.book-taxi-btn.loading {
  pointer-events: none;
  opacity: 0.7; }

.book-taxi-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite; }

@media (max-width: 767.98px) {
  .table-responsive {
    overflow-x: auto; }

  .table th, .table td {
    white-space: nowrap; } }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/* Thông báo tạm thời */
.booking-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease-out; }

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }
/* Responsive */
@media (max-width: 768px) {
  .book-taxi-btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem; }

  .booking-notification {
    left: 10px;
    right: 10px;
    min-width: auto; } }

/*# sourceMappingURL=restaurant-booking.css.map */
