
  .map-container {
    position: relative;
    width: 80%;
    max-width: 1000px;
  }

  svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .pin {
    position: absolute;
    /* width: 40px; */
    /* height: 40px; */
    transform: translate(-50%, -100%); /* Pin tip at coordinates */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pin-line {
    width: 2px;
    height: 50px;
    background-color: #ff5722; /* Arrow line color */
    margin-bottom: -2px; /* Connect to pin */
  }

  .pin-icon {
    width: 30px;
    height: 30px;
    background-image: url(/static/assets/img/logonetco.jpg); /* NETCO logo */
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 2px solid #fff;
  }

    /* Specific colors */
  .location {
    fill: #03141b ; /* Blue */
  }

  .location:hover {
    fill: #7d8081 !important;
  }

  /* Labels */
  .pin-label {
    margin-top: 4px;
    font-size: 12px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 2px 4px;
    border-radius: 5px;
    white-space: nowrap;
  }

  body.day .pin-label {
    background: rgba(255,255,255,0.7);
    color: #000;
  }