.role-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.role-toggle-button {
  padding: 0.75rem 1.5rem;
  border: 2px solid #4f46e5;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
}

.role-toggle-button.active {
  background-color: #4f46e5;
  color: white;
}

.role-toggle-button:not(.active) {
  color: #4f46e5;
}

.role-toggle-button:hover:not(.active) {
  background-color: #eef2ff;
}

.role-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.role-feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef2ff;
  color: #4f46e5;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.role-feature-content {
  flex-grow: 1;
}

.role-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.role-feature-description {
  color: #6b7280;
  line-height: 1.5;
}
