/* Inspect Application - Simple Clean Styles */

:root {
  --bg: #ffffff;
  --card: #f7fbff;
  --text: #263238;
  --muted: #6b7280;
  --primary: #2b82d9;
  --accent: #f2994a;
}

.app.dark {
  --bg: #0f1720;
  --card: #0d1b26;
  --text: #e6eef8;
  --muted: #9aa8b6;
  --primary: #4aa3ff;
  --accent: #f6b173;
}

* {
  box-sizing: border-box;
}

body, .app {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.app.dark .site-header {
  border-bottom-color: rgba(255,255,255,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  gap: 12px;
  /*gap: 0.75rem;*/
  align-items: center;
}

.logo-placeholder {
  width: 200px;
  height: auto;
  /*border-radius: 8px;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*background: var(--card);*/
  object-fit: contain;
}

.brand-text .company-name {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.brand-text .tag {
  font-size: 0.75rem;
  color: var(--muted);
}

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

.btn.link {
  background: transparent;
  border: none;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn.link:hover {
  background: rgba(0,0,0,0.03);
}

.app.dark .btn.link:hover {
  background: rgba(255,255,255,0.03);
}

.main-content {
  padding: 2.5rem 0;
}

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

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 0.3rem;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.choice-card {
  background: var(--card);
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  box-shadow: 0 6px 18px rgba(16,24,40,0.04);
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.choice-card:focus {
  outline: 3px solid rgba(43,130,217,0.16);
  outline-offset: 2px;
}

.choice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(16,24,40,0.08);
}

.choice-card .icon {
  align-self: center;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.app.dark .choice-card .icon {
  color: var(--primary);
}

.choice-card .title {
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  width: 100%;
}

.choice-card .subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(0,0,0,0.04);
  padding: 1rem 0;
  margin-top: 2rem;
  text-align: center;
}

.app.dark .site-footer {
  border-top-color: rgba(255,255,255,0.04);
}

/* Responsive */
@media (max-width: 900px) {
  .choices {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .choices {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

/* Blazor error UI */
#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.3);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}
