* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-green: #A3CBBD;
  --brand-green-light: #edf5f5;
  --brand-green-dark: #108474;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  background: #f9f9f9;
  color: #111;
  min-height: 100vh;
}

.container {
  max-width: 660px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.eyebrow a {
  color: #aaa;
  text-decoration: none;
}

.eyebrow a:hover { color: var(--brand-green-dark); }

h1 {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

/* Root page cards */
.dashboard-list { display: flex; flex-direction: column; gap: 2px; }

.dashboard-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dashboard-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 2px 12px rgba(163,203,189,0.2);
}

.dashboard-card:hover .dashboard-card-arrow { color: var(--brand-green-dark); }

.dashboard-card-name { font-size: 1rem; font-weight: 600; }
.dashboard-card-arrow { color: #ccc; font-size: 1rem; transition: color 0.15s; }

/* Role sections */
.section { margin-bottom: 40px; }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label h2 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  color: #fff;
}

.badge-harvey  { background: #3B82F6; }
.badge-jessica { background: #7C3AED; }
.badge-rachel  { background: #DB2777; }
.badge-brian   { background: #059669; }
.badge-katrina { background: #D97706; }
.badge-mike    { background: #4F46E5; }
.badge-alex    { background: #DC2626; }

.file-list {
  list-style: none;
  border-left: 2px solid var(--brand-green);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-list a {
  font-size: 0.88rem;
  color: #333;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.1s, border-color 0.1s;
}

.file-list a:hover {
  color: var(--brand-green-dark);
  border-bottom-color: var(--brand-green);
}

.empty {
  font-size: 0.82rem;
  color: #bbb;
  padding-left: 16px;
  border-left: 2px solid var(--brand-green-light);
}
