.semantic-score-best-worst-container {
  background: #fff;
  /* border: 2px solid #e5e5e5; */
  border-radius: 10px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.03); */
  padding: 24px 18px 18px 18px;
  margin: 32px auto 40px auto;
  max-width: 540px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.semantic-score-best-worst-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.tab-btn {
  border: none;
  outline: none;
  padding: 7px 18px;
  border-radius: 8px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #f7f7f7;
  color: #222;
  transition: background 0.2s, color 0.2s;
}
.tab-btn-best {
  border: 2px solid #24C789;
  color: #24C789;
}
.tab-btn-worst {
  border: 2px solid #e74c3c;
  color: #e74c3c;
}
.tab-btn.active.tab-btn-best {
  background: #24C789;
  color: #fff;
}
.tab-btn.active.tab-btn-worst {
  background: #e74c3c;
  color: #fff;
}
.semantic-score-best-worst-list {
  width: 100%;
}
.semantic-score-page-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0 8px 0;
  gap: 8px;
}
.semantic-score-page-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
}
.semantic-score-page-title {
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  min-width: 120px;
}
.semantic-score-page-url {
  color: #888;
  font-size: 0.98rem;
  margin: 2px 0 0 0;
  word-break: break-all;
}
.semantic-score-page-score {
  color: #e74c3c;
  font-size: 1.05rem;
  font-weight: 600;
  margin-left: 12px;
  min-width: 90px;
  text-align: right;
}
.score-value {
  color: #e74c3c;
  font-weight: 700;
}
.score-requis {
  color: #888;
  font-weight: 500;
  font-size: 0.98rem;
}
.score-value.score-good {
  color: #24C789;
}
.semantic-score-page-link {
  color: #222;
  font-size: 1.01rem;
  font-weight: 600;
  margin-left: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.semantic-score-page-link:hover {
  color: #1abc9c;
}
.score-sep {
  color: #888;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 2px;
}
@media (max-width: 700px) {
  .semantic-score-best-worst-container {
    padding: 12px 4px;
    max-width: 100%;
  }
  .semantic-score-page-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .semantic-score-page-score {
    margin-left: 0;
    min-width: 0;
    text-align: left;
  }
  .semantic-score-page-link {
    margin-left: 0;
  }
} 