/* Role switcher modal styles */
#role-switcher-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
}
.rs-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.45);
  backdrop-filter: blur(4px);
}
.rs-modal {
  position: relative;
  width: 460px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 32px 64px -20px rgba(13, 27, 42, 0.3);
}
.rs-head h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 6px;
}
.rs-head p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 20px;
}
.rs-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rs-options button {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.12s ease;
}
.rs-options button:hover { border-color: var(--blue); }
.rs-options button.is-active {
  border-color: var(--blue);
  background: var(--blue-wash);
}
.rs-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.rs-info { display: flex; flex-direction: column; gap: 3px; }
.rs-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}
.rs-desc {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.45;
}
