.roles-section {
  margin: 0 auto;
}
.roles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.role-option {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.role-option:hover {
  border-color: #ccc;
  background: #fafafa;
}
.role-option:has(input[type=radio]:checked) {
  border-color: #3b82f6;
  background: #eff6ff;
}
.role-option input[type=radio] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #3b82f6;
  flex-shrink: 0;
}
.role-content {
  flex: 1;
}
.role-name {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}
.role-description {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.roles-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}
.button-group {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}
