.progress-container {
  max-width: 600px;
  margin: 0 auto;
}

.skill {
  margin: 20px 0;
}

.label {
  font-size: 20px;
  margin-bottom: 5px;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label .percent {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0fbbff;
}

.progress {
  height: 30px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background-color: #e0e0e0;
}

.progress .progress-bar-fill {
  width: 0;
  transition: width 1.2s ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: #fff;
  font-weight: bold;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0;
}

/* Colori specifici tramite classi su .skill (più semplice e scalabile) */
.skill-html .progress-bar-fill {
  background-color: #e34c26;
}

.skill-css .progress-bar-fill {
  background-color: #264de4;
}

.skill-js .progress-bar-fill {
  background-color: #f0db4f;
}

.skill-react .progress-bar-fill {
  background-color: #61dafb;
}

.skill-node .progress-bar-fill {
  background-color: #68a063;
}

.skill-sql .progress-bar-fill {
  background-color: #00acee;
}

.desc-title {
  color: #0fbbff;
}

.desc-text {
  font-size: 20px;
}
