.map-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
       /* background: #fff;
    padding: 16px;*/
}

.container-flags svg {
    width: 100%;
    height: auto;
}

.container-flags path {
    /*fill: #66bb6a;
    stroke: #2e7d32;
    stroke-width: 1;*/
    stroke:rgba(255,255,255,0.2)!important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.path:hover {
    fill: #81c784;
    stroke: #1b5e20!important;
    stroke-width: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
.flags {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.flag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    cursor: default;
    user-select: none;
    transition: background-color 0.3s ease;
}
.flag-item:hover {
    background-color: #e0f2f1;
}
.flag-item img {
    width: 36px;
    height: 24px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid #ccc;
}
.flag-item span {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}
.container-flags {
    display: flex;
    max-width: 900px;
    margin: auto;
    gap: 40px;
    align-items: flex-start;
}
.pin {
    fill: #d32f2f;
    stroke: white;
    stroke-width: 2;
    cursor: pointer;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    top: 0px;
    transform-origin: center center;
}
.pin:hover {
    transform: scale(1.05);
    top: 3px;
}
.pin-label {
      font-size: 29px;
    fill: #d32f2f;
    font-weight: bold;
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
}
.map-container{
     mask-image: url('/assets/4x4.jpg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  /* Para Safari / Chrome */
  -webkit-mask-image: url('/assets/4x4.jpg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media (max-width: 700px) {
    .container-flags {
        flex-direction: column;
        align-items: center;
    }
    .flags {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        max-width: 600px;
    }
    .flag-item {
        width: 140px;
        justify-content: flex-start;
    }
}
