body {
    font-family: 'Roboto',sans-serif
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,.4)
}

.popup-content {
    position: absolute;
    background-color: #f2f2f2;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    opacity: 0;
    transition: opacity .5s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup.show .popup-content {
    opacity: 1
}

.close {
    color: #aaa;
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 28px;
    font-weight: bold;
    background: transparent
}

.close:hover,.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.popup-content .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #888;
    padding-bottom: 20px
}

.popup-content .details img {
     margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 16%
} 

.popup-content .description {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  background-color: #f7f7f7;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  max-width: 90%;
  margin: 0 auto;
}

.popup-content .description h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.popup-content .description p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.5;
}

.popup-content .description ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 15px;
}

.popup-content .description li {
  font-size: 1rem;
  margin: 5px 0;
}

/* Estilos adicionales para enlaces */
.popup-content .description a {
  color: #007bff;
  text-decoration: none;
}

.popup-content .description a:hover {
  text-decoration: underline;
}

.logo {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 200px
}

area {
    cursor: pointer
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 800px;
  padding: 20px;
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.fila {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

#popup.hidden {
  display: none;
}

#infoConcejales {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  border-style: outset;
  padding-bottom: 20px;
}

#infoDesam {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  border-style: outset;
  padding-bottom: 20px;
}


.persona {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.persona p {
      border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  background-color: #f7f7f7;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.persona img {
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 220px;
}
.contacto {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  background-color: #f7f7f7;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.contacto h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.contacto p {
  font-size: 1rem;
  margin: 5px 0;
}

.contacto strong {
  font-weight: bold;
}

/* Estilos adicionales para enlaces */
.contacto a {
  color: #007bff;
  text-decoration: none;
}

.contacto a:hover {
  text-decoration: underline;
}

#logo-container {
  flex-shrink: 0;
  width: 20px; /* Ajusta este valor según el tamaño de tu logo */
}

#descripcion {
  margin-top: 20px;
  text-align: center;
}