body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #222;
  margin: 0;
  padding: 20px;
}

/* CONTENEDOR */
.container {
  max-width: 700px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.title {
  color: #1e3a8a;
  margin-bottom: 5px;
}

.subtitle {
  color: #666;
  margin-top: 0;
}

/* IMAGEN */
.profile-image {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* SECCIONES */
.card {
  margin-bottom: 25px;
}

h2 {
  margin-top: 20px;
  color: #1e3a8a;
}

/* LINKS */
a {
  color: #1bbcce;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* TABLA */
.skills-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

.skills-table th,
.skills-table td {
  border: 1px solid #ccc;
  padding: 10px;
}

.skills-table th {
  background-color: #2563eb;
  color: white;
}

.skills-table tr:nth-child(even) {
  background-color: #f0f4ff;
}

/* INPUT + BUTTON */
.text-input {
  padding: 8px;
  margin-top: 10px;
  width: 60%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.button {
  padding: 8px 12px;
  margin-left: 10px;
  background-color: #1e3a8a;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background-color: #163172;
}

.dynamic-text {
  margin-top: 15px;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  .text-input {
    width: 100%;
    margin-bottom: 10px;
  }

  .button {
    width: 100%;
    margin-left: 0;
  }

  .profile-image {
    width: 110px;
    height: 110px;
  }
}