/* GeoSpaceData — DSR Frontend Override
   Injected via nginx sub_filter to rebrand the Data Space Ready UI
   Palette from landing page: navy #1a5276, teal #2a9d8f, dark #0d2137 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Hide iris360 logo image */
header .logo,
img[data-testid="logo"] {
  display: none !important;
}

/* Show GeoSpaceData branding in place of logo */
header .MuiToolbar-root::before {
  content: '\1F310  GeoSpaceData';
  font-size: 18px;
  font-weight: 600;
  color: #1a5276;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

/* Navbar — white background like landing page */
header.MuiAppBar-root {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

/* Subheader — subtle background matching landing section-alt */
.subheader-title {
  background: #f4f7fa;
}

/* Replace "Data Space Ready" subheader title */
.subheader-title h1 {
  font-size: 0 !important;
  color: transparent !important;
}
.subheader-title h1::after {
  content: 'Mi Conector';
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a5276;
  font-family: 'Inter', sans-serif;
}

/* Hide the data-platform.svg icon next to subheader title */
.subheader-title img[aria-hidden] {
  display: none !important;
}

/* Active navigation — navy accent like landing nav */
.MuiButtonBase-root.Mui-selected,
button[aria-current="true"] {
  color: #1a5276 !important;
}

/* Links — teal like landing page CTAs */
a.MuiLink-root,
.MuiTypography-root a {
  color: #2a9d8f !important;
}
