body { padding-bottom: 40px; }
.card { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

/* RTL Support */
[dir="rtl"] .ms-auto { margin-left: unset !important; margin-right: auto !important; }
[dir="rtl"] .me-3 { margin-right: unset !important; margin-left: 1rem !important; }
[dir="rtl"] .me-2 { margin-right: unset !important; margin-left: 0.5rem !important; }
[dir="rtl"] .me-1 { margin-right: unset !important; margin-left: 0.25rem !important; }
[dir="rtl"] .ms-1 { margin-left: unset !important; margin-right: 0.25rem !important; }
[dir="rtl"] .ms-2 { margin-left: unset !important; margin-right: 0.5rem !important; }
[dir="rtl"] .text-end { text-align: left !important; }
[dir="rtl"] .text-start { text-align: right !important; }
[dir="rtl"] .navbar-nav { flex-direction: row-reverse; }
[dir="rtl"] .list-group { text-align: right; }
[dir="rtl"] .order-card { border-left: none; border-right: 5px solid #ccc; }
[dir="rtl"] .order-card.status-pending { border-right-color: #ffc107; border-left-color: transparent; }
[dir="rtl"] .order-card.status-in-progress { border-right-color: #0dcaf0; border-left-color: transparent; }
[dir="rtl"] .order-card.status-done { border-right-color: #198754; border-left-color: transparent; }
[dir="rtl"] .order-card.status-cant-do { border-right-color: #dc3545; border-left-color: transparent; }
[dir="rtl"] .order-card.status-out-for-delivery { border-right-color: #6f42c1; border-left-color: transparent; }
[dir="rtl"] .order-card.status-ready-for-pickup { border-right-color: #20c997; border-left-color: transparent; }
[dir="rtl"] .order-card.status-scheduled { border-right-color: #fd7e14; border-left-color: transparent; }
[dir="rtl"] .stat-card.highlight { border-left: none; border-right: 4px solid #0d6efd; }
[dir="rtl"] .stat-card.success { border-left: none; border-right: 4px solid #198754; }
[dir="rtl"] .stat-card.warning { border-left: none; border-right: 4px solid #ffc107; }
[dir="rtl"] .stat-card.info { border-left: none; border-right: 4px solid #0dcaf0; }
[dir="rtl"] .chat-bubble.user { margin-left: unset; margin-right: auto; border-bottom-right-radius: 12px; border-bottom-left-radius: 4px; }
[dir="rtl"] .chat-bubble.assistant { margin-right: unset; margin-left: auto; border-bottom-left-radius: 12px; border-bottom-right-radius: 4px; }
[dir="rtl"] .flex-shrink-0 { margin-left: unset; }
[dir="rtl"] .overflow-hidden { margin-right: unset; margin-left: 0.5rem; }

/* Menu group tabs */
.menu-group-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.menu-group-tab {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid #dee2e6;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.menu-group-tab:hover { background: #e9ecef; }
.menu-group-tab.active { background: #0d6efd; color: #fff; border-color: #0d6efd; }
.menu-group-tab .badge { font-size: 0.7rem; }

/* Chatbot status badges on restaurant selection cards */
.badge.chatbot-on { background: #198754; color: #fff; font-size: 0.75rem; }
.badge.chatbot-off { background: #dc3545; color: #fff; font-size: 0.75rem; }
.badge.chatbot-locked { background: #6c757d; color: #fff; font-size: 0.75rem; }

/* Menu item cards */
.menu-item-card {
  border-radius: 8px;
  transition: all 0.2s;
}
.menu-item-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* Sold-out item cards */
.sold-out-card {
  opacity: 0.75;
  border-color: #dee2e6 !important;
  background: #f8f9fa;
}
.sold-out-img {
  filter: grayscale(80%);
}
