.calendar-grid {
  display: grid;
  gap: 0.5rem;
}
.calendar-day {
  min-height: 4rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 0.35rem;
  background: #fff;
}
.calendar-day.muted {
  background: #f8f9fa;
  color: #adb5bd;
}
.booking-pill {
  font-size: 0.75rem;
  padding: 0.15rem 0.35rem;
  border-radius: 0.2rem;
  background: #e7f1ff;
  border: 1px solid #b6d4fe;
  margin-bottom: 2px;
  display: block;
  text-decoration: none;
  color: #084298;
}
.booking-pill:hover {
  background: #cfe2ff;
}

/* Top navigation — hotel brand & user menu */
.navbar-app {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.navbar-brand-logo {
  max-height: 44px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}
.navbar-brand-text {
  max-width: min(14rem, 50vw);
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a !important;
  letter-spacing: -0.02em;
}
.login-company-logo {
  max-height: 120px;
  max-width: 100%;
}
.navbar-brand-hotel {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: #0f172a !important;
  max-width: min(14rem, 42vw);
}
@media (min-width: 992px) {
  .navbar-brand-hotel {
    max-width: 20rem;
    font-size: 1.2rem;
  }
}
.nav-link-app {
  color: #475569 !important;
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link-app:hover,
.nav-link-app:focus {
  color: #0d6efd !important;
  background: rgba(13, 110, 253, 0.06);
  border-color: rgba(13, 110, 253, 0.35);
}
.nav-user-toggle {
  color: #334155 !important;
  border: 1px solid transparent;
}
.nav-user-toggle:hover,
.nav-user-toggle:focus,
.nav-user-toggle.show {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.08);
}
.nav-user-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.15em;
}
.nav-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
  flex-shrink: 0;
}
.nav-user-name {
  max-width: 10rem;
}
@media (max-width: 575.98px) {
  .nav-user-name {
    max-width: 8rem;
  }
}
.extra-small {
  font-size: 0.7rem;
  line-height: 1.2;
}
.navbar-app .dropdown-menu {
  min-width: 12rem;
}
.navbar-app .dropdown-item {
  font-size: 0.9rem;
}
.navbar-app .dropdown-item:hover {
  background: #f1f5f9;
}

/* Site footer — DHB Online */
.site-footer {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #475569;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  box-shadow: 0 -1px 0 rgba(15, 23, 42, 0.06);
}
.site-footer__inner {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.site-footer__line {
  line-height: 1.5;
  margin-bottom: 0;
}
.site-footer__support {
  color: #64748b;
  font-weight: 500;
}
.site-footer__link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.site-footer__link:hover {
  color: #0a58ca;
  text-decoration: underline;
}
