/* Branch dot styles */
.branch-dot {
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.branch-dot:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Map Styles */
#map svg {
    max-width: 100%;
    height: auto;
}

#map {
    height: 900px;
}

.maplink {
    transition: all 0.3s ease;
    fill: #14C49A;
    cursor: default;
}

.maplink.active-state {
    cursor: pointer;
    fill: #32208e;
}



/* .maplink.active-state.on {
		fill: #1a5490 !important;
	} */

.dots {
    pointer-events: none;
    display: none;
}

/* Copy button styles */
.copy-address-btn {
    transition: all 0.3s ease;
}

.copy-address-btn:hover {
    transform: translateY(0px);
}

.policies-txt h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.policies-txt p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Reset bootstrap button look completely */
.copy-address-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    color: #667085 !important;
  
    display: inline-flex;
    align-items: center;
    gap: 8px;
  
    transition: all 0.2s ease;
  }
  
  /* Remove bootstrap focus ring */
  .copy-address-btn:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* Icon style */
  .copy-address-btn i {
    font-size: 14px;
    color: #16a34a;
  }
  
  /* Hover */
  .copy-address-btn:hover {
    color: #111827 !important;
  }
  
  .copy-address-btn:hover i {
    transform: translateY(0px);
  }
  
  /* Copied state */
  .copy-address-btn.copied {
    color: #16a34a !important;
  }