/* templates/cv.css - Estilo básico para CV profesional */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 2cm 1.5cm 2cm 1.5cm;
  color: #222;
  background: #fff;
}
h1, h2, h3 {
  color: #1a237e;
  margin-top: 1.2em;
}
h1 {
  font-size: 1.7em;
  border-bottom: 2px solid #1a237e;
  padding-bottom: 0.2em;
  text-align: center;
}
h2 {
  font-size: 1.4em;
  border-bottom: 1px solid #90caf9;
  padding-bottom: 0.1em;
}
h3 {
  font-size: 1.1em;
  color: #1565c0;
}
p, ul, ol {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 0.7em;
}
strong {
  color: #0d47a1;
}
a {
  color: #1976d2;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1em;
}
td, th {
  border: 1px solid #bdbdbd;
  padding: 0.4em 0.7em;
}

/* Foto (si se añade) */
.cv-photo {
  float: right;
  width: 120px;
  margin: 0 0 1em 1em;
  border-radius: 8px;
  box-shadow: 0 2px 8px #aaa;
}
