/* Scope for SkillsDetails component */
.SkillsDetails .info_card_box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.SkillsDetails .card_header_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 16px;
}

.SkillsDetails .header_left_group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.SkillsDetails .info_circle_icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1e293b;
}

.SkillsDetails .header_heading_text {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Skills List Rows */
.SkillsDetails .skills_list_container {
  display: flex;
  flex-direction: column;
}

.SkillsDetails .skill_item_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #f8fafc;
}

.SkillsDetails .skill_item_row:last-child {
  border-bottom: none;
}

.SkillsDetails .skill_name_text {
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
}

.SkillsDetails .rating_dots_group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.SkillsDetails .rating_dot {
  width: 7px;
  height:7px;
  border-radius: 50%;
  display: inline-block;
}

.SkillsDetails .active_dot {
  background-color: #0284c7; /* Active blue color */
}

.SkillsDetails .inactive_dot {
  background-color: #e2e8f0; /* Muted gray color */
}