/* ===============================================
   Gastro Bot - Modern Login & About Page Styles
   Restaurant-inspired design with modern aesthetics
   =============================================== */

/* Google Fonts Import - Premium Typografie */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  /* ===============================================
     CSS Variable Bridge: --gastrobot-* → --kf-*
     
     This creates consistency between public pages
     (using --gastrobot-*) and authenticated pages
     (using --kf-*). When tenant branding is injected,
     both namespaces will use the same values.
     =============================================== */

  /* Restaurant Color Palette - Modern & Elegant */
  /* These are the Gastro Bot product defaults */
  --gastrobot-primary: var(--kf-primary, #2d5016); /* Deep Forest Green */
  --gastrobot-primary-light: var(--kf-secondary, #457628); /* Sage Green */
  --gastrobot-primary-dark: #1a3309; /* Dark Moss */
  --gastrobot-accent: var(--kf-accent, #d4af37); /* Warm Gold */
  --gastrobot-accent-light: #e8c547; /* Light Gold */
  --gastrobot-secondary: #8b4513; /* Saddle Brown */
  --gastrobot-text: #2b2b2b; /* Charcoal */
  --gastrobot-text-light: #6b6b6b; /* Gray */
  --gastrobot-background: #f8f6f3; /* Warm White */
  --gastrobot-surface: #fafcf8; /* Warm Off-White */
  --gastrobot-border: #e0ddd8; /* Soft Beige */
  --gastrobot-success: #457628;
  --gastrobot-danger: #c03221;
  --gastrobot-info: #2c5c7c;

  /* Bridge: Also set --kf-* defaults for pages that might use them */
  --kf-primary: #2d5016;
  --kf-secondary: #457628;
  --kf-accent: #d4af37;
}

/* ===============================================
   LOGIN PAGE
   =============================================== */

.gastrobot-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gastrobot-background);
}

.gastrobot-login__hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--gastrobot-primary) 0%,
    var(--gastrobot-primary-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gastrobot-login__hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(232, 197, 71, 0.08) 0%,
      transparent 50%
    );
  opacity: 0.6;
}

.gastrobot-login__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
}

.gastrobot-login__brand {
  animation: fadeInUp 0.8s ease-out;
}

.gastrobot-login__logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  animation: float 3s ease-in-out infinite;
}

.gastrobot-login__icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.gastrobot-login__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--gastrobot-accent-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gastrobot-login__tagline {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 0.02em;
  color: white !important; /* Explizit weiß — overrides any global text color rules */
}

.gastrobot-login__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.gastrobot-login__card {
  width: 100%;
  max-width: 480px;
  background: var(--gastrobot-surface);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-out;
}

.gastrobot-login__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gastrobot-login__header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gastrobot-text);
  margin-bottom: 0.5rem;
}

.gastrobot-login__header p {
  color: var(--gastrobot-text-light);
  font-size: 1rem;
}

/* Buttons */
.gastrobot-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gastrobot-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gastrobot-btn--primary {
  background: linear-gradient(
    135deg,
    var(--gastrobot-primary) 0%,
    var(--gastrobot-primary-light) 100%
  );
  color: white;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.gastrobot-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.gastrobot-btn--secondary {
  background: white;
  color: var(--gastrobot-primary);
  border: 2px solid var(--gastrobot-border);
}

.gastrobot-btn--secondary:hover:not(:disabled) {
  border-color: var(--gastrobot-primary);
  background: rgba(45, 80, 22, 0.05);
}

/* Passkey button - prominent styling */
.gastrobot-btn--passkey {
  position: relative;
  overflow: hidden;
}

.gastrobot-btn--passkey i {
  font-size: 1.5rem;
}

.gastrobot-btn--passkey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Passkey hint text */
.gastrobot-login__passkey-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gastrobot-text-light);
  margin: 0.75rem 0 0;
  opacity: 0.8;
}

.gastrobot-login__passkey-hint i {
  color: var(--gastrobot-primary);
}

.gastrobot-btn i {
  font-size: 1.25rem;
}

/* Divider */
.gastrobot-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  color: var(--gastrobot-text-light);
  font-size: 0.875rem;
}

.gastrobot-divider::before,
.gastrobot-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gastrobot-border);
}

.gastrobot-divider span {
  padding: 0 1rem;
}

/* Form */
.gastrobot-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gastrobot-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gastrobot-form-group label {
  font-weight: 600;
  color: var(--gastrobot-text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gastrobot-input {
  padding: 0.875rem 1rem;
  border: 2px solid var(--gastrobot-border);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--gastrobot-surface);
}

.gastrobot-input:focus {
  outline: none;
  border-color: var(--gastrobot-primary);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* Validation Messages */
.gastrobot-form-group .validation-message {
  color: var(--gastrobot-danger);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Alerts */
.gastrobot-alert {
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.gastrobot-alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.gastrobot-alert--info {
  background: rgba(44, 92, 124, 0.1);
  color: var(--gastrobot-info);
  border-left: 4px solid var(--gastrobot-info);
}

.gastrobot-alert--success {
  background: rgba(74, 124, 44, 0.1);
  color: var(--gastrobot-success);
  border-left: 4px solid var(--gastrobot-success);
}

.gastrobot-alert--danger {
  background: rgba(192, 50, 33, 0.1);
  color: var(--gastrobot-danger);
  border-left: 4px solid var(--gastrobot-danger);
}

/* Help Links */
.gastrobot-login__help {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gastrobot-border);
}

/* Register Section */
.gastrobot-login__register {
  margin-top: 1.5rem;
  text-align: center;
}

.gastrobot-login__register p {
  font-size: 0.875rem;
  color: var(--gastrobot-text-light);
  margin-bottom: 0.5rem;
}

/* Info Link */
.gastrobot-login__info {
  margin-top: 2rem;
  text-align: center;
}

.gastrobot-btn-link {
  background: none;
  border: none;
  color: var(--gastrobot-primary);
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.gastrobot-btn-link:hover {
  color: var(--gastrobot-primary-light);
  text-decoration: underline;
}

/* Recovery Page Styles */
.gastrobot-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(45, 80, 22, 0.08);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.gastrobot-info-box i {
  color: var(--gastrobot-primary);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.gastrobot-info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gastrobot-text);
  line-height: 1.5;
}

.gastrobot-recovery-info {
  text-align: center;
  margin: 1.5rem 0;
  color: var(--gastrobot-text);
  line-height: 1.6;
}

.gastrobot-recovery-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.gastrobot-recovery-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gastrobot-background);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--gastrobot-text-light);
}

.gastrobot-recovery-note i {
  color: var(--gastrobot-primary);
  opacity: 0.7;
}

.gastrobot-recovery-note p {
  margin: 0;
  line-height: 1.5;
}

/* Danger Button */
.gastrobot-btn--danger {
  background: linear-gradient(135deg, #c03221 0%, #e74c3c 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(192, 50, 33, 0.3);
}

.gastrobot-btn--danger:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 50, 33, 0.4);
}

/* Footer */
.gastrobot-login__footer {
  margin-top: 2rem;
  text-align: center;
  color: var(--gastrobot-text-light);
  font-size: 0.875rem;
}

.gastrobot-login__powered {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gastrobot-text-light);
  opacity: 0.7;
}

/* Legal Links in Footer */
.gastrobot-login__legal-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gastrobot-login__legal-links a {
  color: var(--gastrobot-text-light);
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.gastrobot-login__legal-links a:hover {
  color: white;
  opacity: 1;
  text-decoration: underline;
}

.gastrobot-login__separator {
  color: var(--gastrobot-text-light);
  opacity: 0.5;
  font-size: 0.75rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================================
   ABOUT PAGE
   =============================================== */

.about-container {
  min-height: 100vh;
  background: var(--gastrobot-background);
}

.about-hero {
  background: linear-gradient(
    135deg,
    var(--gastrobot-primary) 0%,
    var(--gastrobot-primary-dark) 100%
  );
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 30% 50%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(232, 197, 71, 0.1) 0%,
      transparent 50%
    );
  opacity: 0.6;
}

.about-hero__content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: white; /* Weiße Schrift auf dunkelgrünem Hintergrund */
}

.about-back-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-5px);
}

.about-hero__logo {
  width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.about-hero__icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.about-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white; /* Explizit weiß */
}

.about-hero__subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gastrobot-accent-light);
}

.about-hero__tagline {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
  color: white; /* Explizit weiß */
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gastrobot-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-section__title i {
  color: var(--gastrobot-accent);
}

.about-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gastrobot-text);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-feature {
  background: var(--gastrobot-surface);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-feature__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--gastrobot-primary) 0%,
    var(--gastrobot-primary-light) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-feature__icon i {
  font-size: 1.75rem;
  color: white;
}

.about-feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gastrobot-text);
  margin-bottom: 0.75rem;
}

.about-feature p {
  color: var(--gastrobot-text-light);
  line-height: 1.6;
}

.about-section--highlight {
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.05) 0%,
    rgba(74, 124, 44, 0.03) 100%
  );
  padding: 3rem;
  border-radius: 20px;
  border-left: 5px solid var(--gastrobot-accent);
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gastrobot-border);
  line-height: 1.6;
}

.about-list li:last-child {
  border-bottom: none;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-step {
  display: flex;
  gap: 1.5rem;
}

.about-step__number {
  width: 48px;
  height: 48px;
  background: var(--gastrobot-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about-step__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gastrobot-text);
  margin-bottom: 0.5rem;
}

.about-step__content p {
  color: var(--gastrobot-text-light);
  line-height: 1.6;
}

.about-section--security {
  background: var(--gastrobot-surface);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-security {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-security-item {
  text-align: center;
}

.about-security-item i {
  font-size: 3rem;
  color: var(--gastrobot-primary);
  margin-bottom: 1rem;
}

.about-security-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gastrobot-text);
  margin-bottom: 0.75rem;
}

.about-security-item p {
  color: var(--gastrobot-text-light);
  line-height: 1.6;
}

.about-section--benefits {
  text-align: center;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-benefit {
  padding: 2rem;
  background: var(--gastrobot-surface);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-benefit i {
  font-size: 2.5rem;
  color: var(--gastrobot-accent);
  margin-bottom: 1rem;
}

.about-benefit p {
  color: var(--gastrobot-text);
  font-weight: 600;
  line-height: 1.6;
}

.about-section--cta {
  text-align: center;
}

.about-cta {
  background: linear-gradient(
    135deg,
    var(--gastrobot-primary) 0%,
    var(--gastrobot-primary-light) 100%
  );
  color: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(45, 80, 22, 0.3);
}

.about-cta__illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-cta__illustration img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-cta__text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.about-cta__button {
  background: var(--gastrobot-accent);
  color: var(--gastrobot-text);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.about-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* About Page Footer Links */
.about-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(95, 125, 85, 0.15);
}

.about-footer-links a {
  color: var(--gastrobot-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.about-footer-links a:hover {
  background: rgba(95, 125, 85, 0.1);
}

.about-footer {
  background: var(--gastrobot-primary-dark);
  color: white;
  text-align: center;
  padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gastrobot-login {
    grid-template-columns: 1fr;
  }

  .gastrobot-login__hero {
    min-height: 40vh;
  }

  .gastrobot-login__title {
    font-size: 2.5rem;
  }

  .gastrobot-login__card {
    padding: 2rem;
  }

  .about-hero__title {
    font-size: 2.5rem;
  }

  .about-features,
  .about-steps,
  .about-security,
  .about-benefits {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Sidebar Nav — Badge Pills & Layout Fixes
   Global CSS required because MudBlazor's internal DOM
   cannot be targeted reliably with Blazor scoped CSS.
   ═══════════════════════════════════════════════════════════════ */

/* Prevent drawer from expanding beyond its width */
.mud-drawer-content {
  overflow-x: hidden;
}

/* Make nav link text a flex row so label + badge sit side by side */
.mud-nav-link-text {
  display: flex !important;
  align-items: center;
  width: 100%;
  gap: 8px;
}

/* Label text — takes remaining space, wraps naturally at 280px drawer */
.nav-label {
  flex: 1;
  min-width: 0;
}

/* Badge base — never shrinks, always visible */
.nav-badge {
  margin-left: auto;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 11px;
  padding: 0 6px;
  font-size: 0.75rem;
  display: inline-block;
  flex-shrink: 0;
}

/* Solid dark badge (Offene Reservierungen) */
.nav-badge--filled {
  background: #2d5016 !important;
  color: #fff !important;
}

/* High-specificity override for MudBlazor anchor color inheritance */
.mud-nav-link .mud-nav-link-text .nav-badge--filled,
a .nav-badge--filled,
a.mud-nav-link .nav-badge--filled {
  color: #fff !important;
}

/* Outlined badge (Bearbeitete Reservierungen) */
.nav-badge--outlined {
  border: 1px solid rgba(30, 58, 14, 0.3);
  color: inherit;
  line-height: 20px;
}

/* Warning badge (System-Warnungen) */
.nav-badge--warning {
  background: #ff9800 !important;
  color: #fff !important;
}

.mud-nav-link .mud-nav-link-text .nav-badge--warning,
a .nav-badge--warning,
a.mud-nav-link .nav-badge--warning {
  color: #fff !important;
}
