/* ════════════════════════════════════════════════════════
   LANGUAGE SELECTOR - Complete Translation
════════════════════════════════════════════════════════ */

.language-selector {
  display: flex;
  gap: 8px;
  padding: 12px;
  margin: 12px 12px 16px 12px;
  background: transparent;
  justify-content: center;
  border-bottom: 1px solid #edf1f7;
}

.lang-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f0f4fa;
  color: #3d5280;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.lang-btn:hover {
  background: #e8f0fd;
  transform: translateY(-1px);
}

.lang-btn.active {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.lang-btn.active:hover {
  background: #1d4ed8;
}

/* ════════════════════════════════════════════════════════
   FIX FOR MARATHI TEXT CUTOFF IN HEADER
   Increases space for longer Marathi text
════════════════════════════════════════════════════════ */

.logoBox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  background: var(--navy);
  flex-shrink: 0;
  min-height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: visible;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: normal;
  letter-spacing: .01em;
  line-height: 1.2;
}

.brand-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  white-space: normal;
  line-height: 1.2;
}

.sidebar-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

/* Hide status bar powered by text on all devices */
.status-hint {
  display: none !important;
}

/* Sidebar footer - show for all views, centered */
.sidebar-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 12px;
  margin-top: auto;
  border-top: 1px solid #edf1f7;
  background: transparent;
}

.footer-dot {
  display: none;
}

.footer-powered-by {
  font-size: 10px;
  color: #7a90b8;
  text-align: center;
  font-weight: 500;
}

.footer-powered-by a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-powered-by a:hover {
  color: #2563eb;
}

@media (max-width: 600px) {
  .language-selector {
    margin: 12px 8px 16px 8px;
    padding: 10px;
  }

  .lang-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .logoBox {
    padding: 12px 12px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .footer-powered-by {
    font-size: 9px;
  }
}