/* .map-container {
  display: grid;
grid-template-columns: 1fr 3fr;
} */
/* .europe-map{
  max-height: 80vh;
} */
.europe-map svg {
  /* height: 100% !important; */
  /* width: auto !important; */
}
.country-list {
  max-height: 60vh;
  overflow-y: auto;
  transition: max-height var(--transition);
  scroll-behavior: smooth;
  width: 100%;
  position: relative;
  padding-right: 40px;
  color: var(--main-blue);
}
.country-list::after {
  content: "";
  position: sticky;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, #f2f1ef 0%, rgba(242, 241, 239, 0) 100%);
  z-index: 999;
  pointer-events: none !important;
}
.country-list.expanded::after {
  display: none;
}
.country-list::-webkit-scrollbar {
  width: 12px;
}

.country-list::-webkit-scrollbar-track {
  background: transparent;
}

.country-list::-webkit-scrollbar-thumb {
  /* background: #212b55; */
  background: #212b5596;
  border-radius: 50px;
}
.country-list:hover::-webkit-scrollbar-thumb {
  background: #212b55;
}

.country-list::-webkit-scrollbar-thumb:hover {
  background: #212b55;
}
.country-item {
  padding: 12px 10px;
  cursor: pointer;
  transition: background 0s;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
}

.country-item.highlight {
  background: var(--accent);
}

.europe-map path {
  /* fill: #f2f1ef; */
  transition: fill 0.3s;
  /* cursor: pointer; */
}

.europe-map path.active {
  fill: var(--accent);
}

#see-more {
  margin-top: 20px;
  display: block;
  /* background: #0073aa; */
  color: #212b55;
  border: none;
  /* padding: 10px; */
  cursor: pointer;
  text-decoration: underline;
  font-size: 16px;
}

#see-more:hover {
  /* background: #005580; */
}

.country-item.hover-highlight {
  background: var(--accent);
}

.country-list.expanded {
  max-height: 5000px; /* Une grande valeur pour s'adapter au contenu */
}

.country-disabled {
  cursor: default;
  /* opacity: 0.5; */
}

.country-enabled {
  cursor: pointer;
}
.country-enabled {
  fill: #212b550c;
}
.country-disabled {
  fill: #f2f1ef;
}

.country-enabled:hover {
  /* fill: #212b55 ; */
  fill: var(--accent);
}
.europe-map svg {
  transform-origin: left bottom;
  /* transform: scale(1.4); */
}

.hover-active {
  fill: var(--accent) !important;
  transition: fill 0.3s ease-in-out;
}

.hover-highlight {
  background-color: rgba(33, 43, 85, 0.2);
  transition: background 0.3s ease-in-out;
}

.country-tooltip {
    font-size: 12px;
    font-weight: bold;
    fill: white;
    /* stroke: white; */
    /* color: black; */
    stroke-width: 0px;
    paint-order: stroke;
    pointer-events: none !important;
}
.country-tooltip-bg{
    pointer-events: none !important;
    fill: rgba(0, 0, 0, 0.3);
}

/* .tooltip-group rect {
    fill: black;
    opacity: 0.8;
    rx: 5px;
    ry: 5px;
} */