.map-container-mbbs {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #d0cccc;
    overflow: hidden;
  }
  
  .world-map-mbbs {
    width: 100%;
    height: auto;
  }
  
  .flag-container-mbbs {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .flag-mbbs {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s;
  }
  
  .flag-mbbs:hover {
    transform: scale(1.2);
  }
  
  .country-name-mbbs {
    margin-top: 5px;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
  }
  
  .country-name-mbbs:hover {
    background-color: #ddd;
  }
  
  /* Mobile responsive adjustments */
  @media (max-width: 768px) {
    .flag-mbbs {
      width: 20px;
      height: 20px;
    }
    
    .country-name-mbbs {
      font-size: 0.8rem;
    }
  
    .flag-container-mbbs {
      top: calc(var(--top) * 1.2);
      left: calc(var(--left) * 1.2);
    }
  }