/* Contenedor principal */
.container {
  max-width: 700px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

.container h1 {
  margin-bottom: 15px;
}

/* Formulario */
form#editTalentoForm .form-group {
  margin-bottom: 15px;
}
form#editTalentoForm label {
  display: block;
}
form#editTalentoForm input[type="text"],
form#editTalentoForm input[type="number"],
form#editTalentoForm input[type="email"],
form#editTalentoForm input[type="url"],
form#editTalentoForm select {
  width: 400px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
.actions {
  margin-top: 20px;
}
.actions button {
  padding: 10px 20px;
  background: #ff004a;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.actions button:hover {
  background: #d3003a;
}

/* Sección de fotos */
.photo-card-container {
  background: #EEE;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.photo-card-container h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.photos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.photo-card {
  position: relative;
  width: 150px;
  height: 188px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background: rgba(0,0,0,0.5);
}
.photo-actions button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 5px;
  cursor: pointer;
}
.photo-actions button:hover {
  background: rgba(255,255,255,0.2);
}

/* Subir nuevas fotos */
.photo-upload {
  margin-top: 15px;
}

.photo-upload label {
  font-weight: bold;
}

.photo-upload input {
  background: #DDD;
  border-radius: 5px;
  padding: 5px;
  margin-left: 5px;
}

.editar-talento-form {

}

.editar-talento-form .form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.editar-talento-form .label-edad {
    position: absolute;
    margin-left: 548px;
    display: flex;
    font-size: 13px;
}

#uploadPhotosBtn {
  margin-left: 10px;
  padding: 8px 15px;
  background: #ff004a;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#uploadPhotosBtn:hover {
  background: #d3003a;
}
