body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f0f0f0;
}

.container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.form-container {
  width: 30%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.cv-container {
  width: 70%;
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* Columna izquierda */
.cv-left {
  width: 35%;
  background: #2c2c2c;
  color: white;
  padding: 20px;
}

.cv-left img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.cv-left h3 {
  margin-top: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

/* Columna derecha */
.cv-right {
  width: 65%;
  padding: 20px;
}

.cv-right h2 {
  margin: 0;
}

.skill-bar {
  margin: 5px 0;
}

.skill-bar span {
  display: block;
  height: 8px;
  background: #2c2c2c;
  border-radius: 5px;
}

/* Gráfico circular */
#skillsChart {
  max-width: 400px;
  margin-top: 15px;
}