  .map-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
  }
  
  svg {
    width: 100%;
    height: auto;
  }
  
  path {
    fill: #ccc;
    stroke: #fff;
    stroke-width: 0.5;
    cursor: default; /* Değiştirilen kısım */
    transition: fill 0.3s;
  }
  
  .highlighted-country {
    fill: #29A4A1;
    transition: fill 0.2s;
    cursor: pointer; /* Sadece işaretli ülkelerde el işareti */
  }
  
  .highlighted-country:hover {
    fill: #89BE48;
  }
  .highlighted-country.hovered {
    fill: #89BE48 !important;
  }
  
  #infoBox {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .highlighted-country {
    fill: #29A4A1;
    transition: fill 0.2s;
    cursor: pointer;
  }
  
  .highlighted-country:hover {
    fill: #89BE48;
  }
  
  /* Tooltip (Figma tasarımına uygun) */
  .custom-tooltip {
    position: fixed;
    width: 280px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 20px;
    display: none;
    z-index: 1000;
    pointer-events: none;
  }
  .custom-tooltip__image img {
    width: 120px;
    height: 50px;
    object-fit: contain;
    /*padding-bottom: 20px;*/
  }
  .custom-tooltip__info {
    margin-top: 10px;
  }
.custom-tooltip__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px; /* Agency ve country arasında boşluk */
  margin-bottom: 7px;
}
.custom-tooltip__agency,
.custom-tooltip__country {
  padding-bottom: 0; /* Alt boşlukları kaldırabilirsin */
}
  .custom-tooltip__established {
    font-size: 14px;
    color: #000000;
    text-align: left;
    padding-top: 10px;
  }
  .custom-tooltip__desc {
    font-size: 14px;
    color: #000000;
    text-align: left;
    padding-top: 10px;
  }
  