.rd-map-el__grid {
    display: flex;
    gap: 15px;
	padding-bottom: 10px;
}

.rd-map-el__empty {
    text-align: center;
    padding: 20px 0px;
    font-weight: bold;
}

.rd-map-el__sidebar {
    background-color: #F0EFF2;
    border-radius: 30px;
	width: 100%;
}

ul.rd-map-el__list_header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0;
    padding: 20px 20px;
    list-style: none;
    background-color: #3F306F;
    color: #fff;
    border-radius: 30px 30px 0px 0px;
    align-items: center;
	font-weight: 900;
}

li.rd-map-el__item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0;
    padding: 20px 20px;
    list-style: none;
    align-items: start;
    font-weight: 400;
    justify-items: start;
}

li.rd-map-el__item:hover {
    background-color: #E1DDEB;
	font-weight: bold;
}

ul.rd-map-el__list {
    margin: 0;
    padding: 0;
	max-height: 769px;
    overflow: auto;
}

button.rd-map-el__chip.rd-map-el__chip--all {
    background-color: transparent;
    border: 1px solid #3f3070;
    border-radius: 3px;
    color: #3f3070;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 3rem;
    text-align: center;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.rd-map-el__filters {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
    gap: 10px;
}

select.rd-map-el__select-mobile {
    border-bottom: 1px solid #000;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    width: 284px;
    font-size: x-large;
    font-weight: 600;
}

.rd-map-el__header {
    margin-bottom: 30px;
}

/* Provincia activa (clickeada) */
.rd-map-el__map .is-active {
  fill: #1e40af !important; /* azul oscuro */
  stroke: #fff !important;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
  transition: fill 0.2s ease, stroke 0.2s ease;
}

/* Opcional: color al pasar el mouse */
.rd-map-el__map path {
  cursor: pointer;
  outline:none;
}

.rd-map-el__map path:hover {
  fill: #3b82f6;
  opacity: 0.9;
}

/*   .rd-map-el__filters {
    display: none;
  } */

/* --- Responsive ajustes --- */
@media (max-width: 768px) {
  /* Ocultar el mapa en móvil */
  .rd-map-el__map {
    display: none !important;
  }

  /* Mostrar el selector */
  .rd-map-el__select-mobile {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
  }
	
  .rd-map-el__filters {
    display: block;
  }

  /* Ocultar chips de filtro en móvil */

}