:root {
  --primary: #4f46e5;
  --secondary: #7c3aed;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #0f172a;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  background-image: radial-gradient(circle at top right, #e0e7ff, transparent),
                    radial-gradient(circle at bottom left, #f3e8ff, transparent);
  background-attachment: fixed;
  min-height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.container {
  padding: 2rem 5%;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ───── Food Card Image styles ───── */
.card-img-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  background: #f1f5f9;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s;
}

button:hover {
  opacity: 0.9;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.badge {
  background: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: bold;
}

.location {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: bold;
  color: #34d399;
  margin-bottom: 1rem;
}

.search-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  background: var(--card-bg);
  padding: 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.search-bar input {
  margin-bottom: 0;
  flex: 1;
}

.search-bar select {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
}

.glass-box {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 500px;
  margin: 2rem auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.data-table th, .data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-pending { color: #fbbf24; }
.status-approved { color: #34d399; }
.status-rejected { color: #f87171; }

.action-btns {
  display: flex;
  gap: 0.5rem;
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
}

.btn-success { background: #059669; }
.btn-danger { background: #dc2626; }

.btn-block { width: 100%; }

.toggle-link {
  text-align: center;
  margin-top: 1rem;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.875rem;
}

.toggle-link:hover { text-decoration: underline; }

.animated-fade-in {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── Subtitle used by page headers ───── */
.subtitle {
  color: #94a3b8;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
}

/* ───── Modal overlay ───── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease-out;
  padding: 1rem;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content h3 {
  margin-bottom: 0.75rem;
}

.modal-target {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.modal-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 1rem 0 0.5rem;
}

.booking-form label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-form input[type="date"] {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: inherit;
  color-scheme: dark;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ───── Toast ───── */
.toast {
  position: fixed;
  top: 90px;
  right: 2rem;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  z-index: 2000;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease-out;
  max-width: 340px;
}

.toast-success {
  border-left: 4px solid #34d399;
  color: #34d399;
}

.toast-error {
  border-left: 4px solid #f87171;
  color: #f87171;
}

/* ───── Bookings list ───── */
.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.booking-card {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  max-width: none;
  width: 100%;
}

.booking-card p {
  margin: 0.5rem 0 0;
  color: #cbd5e1;
}

/* ───── Itinerary list ───── */
.itinerary-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.itinerary-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  margin: 0;
  max-width: none;
  width: 100%;
}

.itinerary-date {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  min-width: 110px;
  text-align: center;
  padding: 0.4rem 0.75rem;
  background: rgba(99, 102, 241, 0.12);
  border-radius: 0.5rem;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.itinerary-name {
  flex: 1;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ───── Empty / muted states ───── */
.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card-bg);
  border-radius: 1.5rem;
  margin-top: 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.empty-state h3 {
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.muted {
  color: #94a3b8;
  font-style: italic;
}

/* ───── Status pills (replace inline status-pending/approved/rejected) ───── */
.status-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.status-pill.status-pending {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-pill.status-approved {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.status-pill.status-rejected {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

/* ───── Timeline and Review Styles ───── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  padding-left: 2rem;
  border-left: 2px solid rgba(99, 102, 241, 0.3);
}

.itinerary-item {
  position: relative;
  margin-bottom: 2rem;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: -2.7rem;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border: 4px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

.itinerary-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-icon {
  background: transparent;
  color: #94a3b8;
  padding: 0.5rem;
  font-size: 1rem;
}

.btn-icon:hover {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 0.25rem;
  font-size: 1.5rem;
  color: #475569;
  cursor: pointer;
  margin: 1rem 0;
}

.star-rating .fa-star.active {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.review-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.review-card:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-user {
  font-weight: 600;
  color: #e2e8f0;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.875rem;
}

.review-comment {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animations */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.animated-slide-in {
  animation: slideIn 0.4s ease-out forwards;
}

textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}

/* ===========================================================================
   Hero section (home page)
   =========================================================================== */

.hero {
  text-align: center;
  padding: 5rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.08), transparent 60%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary), #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  position: relative;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===========================================================================
   Navbar enhancements
   =========================================================================== */

.nav-brand a {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link i {
  font-size: 0.85rem;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.user-greeting {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.logout-link {
  color: #f87171;
  font-size: 0.8rem;
  padding: 0.35rem 0.65rem;
}

.logout-link:hover {
  background: rgba(248, 113, 113, 0.1);
}

.logout-link i {
  font-size: 0.75rem;
}

/* ===========================================================================
   Footer
   =========================================================================== */

.footer {
  margin-top: 4rem;
  padding: 2rem 5%;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand p {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  max-width: 280px;
}

.footer-brand .gradient-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  color: #475569;
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===========================================================================
   Auth page
   =========================================================================== */

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 2rem 1rem;
}

.auth-card {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.auth-header h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.auth-subtitle {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  padding: 0.3rem;
}

.auth-tab {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #64748b;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.auth-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.auth-tab.active {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group input::placeholder {
  color: #475569;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #ffffff;
  color: var(--text);
}

.auth-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #fca5a5;
  font-size: 0.9rem;
}

.auth-error i {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.auth-error strong {
  display: block;
  color: #f87171;
  margin-bottom: 0.2rem;
}

.auth-footer {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-demo-hints {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.auth-demo-hints > p {
  color: #475569;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.demo-accounts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.demo-badge {
  color: #94a3b8;
  font-size: 0.78rem;
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.demo-badge i {
  color: #6366f1;
  font-size: 0.7rem;
}

/* ===========================================================================
   Password strength meter
   =========================================================================== */

.password-strength-segment.weak   { background: #dc2626 !important; }
.password-strength-segment.fair   { background: #f59e0b !important; }
.password-strength-segment.good   { background: #6366f1 !important; }
.password-strength-segment.strong { background: #34d399 !important; }

/* ===========================================================================
   Card enhancements
   =========================================================================== */

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.card-description {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.card-actions .btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.5rem 0.85rem;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-actions .btn-icon:hover {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary);
  border-color: rgba(99, 102, 241, 0.3);
}

.card-actions .btn-icon i {
  font-size: 0.75rem;
}

.price-indicator {
  display: inline-flex;
  gap: 1px;
}

/* ===========================================================================
   Search bar enhancement
   =========================================================================== */

.search-bar input {
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  flex: 1;
}

.search-bar input::placeholder {
  color: #475569;
}

/* ===========================================================================
   HTMX indicator (spinner shown during requests)
   =========================================================================== */

.htmx-indicator {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  opacity: 1;
}

/* ===========================================================================
   Misc
   =========================================================================== */

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 1.5rem;
    margin: 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .user-menu {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
  }

  .user-greeting {
    display: none;
  }
}
