/* Minimal CSS for clean, modern design */
:root {
  --text-primary: #2d3748;
  --text-secondary: #718096;
  --text-muted: #a0aec0;
  --background: #ffffff;
  --background-secondary: #f7fafc;
  --border-light: #e2e8f0;
  --border: #cbd5e0;
  --accent: #4a5568;
  --accent-light: #edf2f7;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --radius: 8px;
  --radius-sm: 4px;
}

[data-md-color-scheme="slate"] {
  --text-primary: #f7fafc;
  --text-secondary: #cbd5e0;
  --text-muted: #a0aec0;
  --background: #1a202c;
  --background-secondary: #2d3748;
  --border-light: #4a5568;
  --border: #718096;
  --accent: #e2e8f0;
  --accent-light: #2d3748;
}

/* Clean typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
}

/* Minimal cards */
.card {
  background: var(--background);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}

/* Clean buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Minimal timeline */
.minimal-timeline {
  position: relative;
  padding-left: 1rem;
}

.minimal-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.25rem;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
}

/* Form elements */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--background);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.border-t { border-top: 1px solid var(--border-light); }
.border-b { border-bottom: 1px solid var(--border-light); }

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Remove excessive animations and complex effects */
* {
  box-sizing: border-box;
}

/* Hide complex neoteroi elements that are too colorful */
.nt-timeline-dot {
  background-color: var(--accent) !important;
  border: 2px solid var(--background) !important;
}

/* Simplify any existing color-heavy elements */
[class*="nt-color-"], [class*="nt-group-"] {
  background-color: var(--accent-light) !important;
  color: var(--text-primary) !important;
}
