.actionButton {
  padding: 10px;
  font-weight: 500;
  border-radius: 50px;
  background-color: #b81e4a;
  border: 1px solid #b81e4a;
  box-shadow: none;
}

.actionButton:hover {
  background-color: #b81e4a;
  border-color: #b81e4a;
}

/* Remove bottom arrow (the tip) */
.gm-style-iw-tc::after {
  display: none !important;
}

/* Remove shadow + white border */
.gm-style-iw {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

/* Remove white rounded container background */
.gm-style-iw > button {
  display: none !important; /* hides close button */
}

.gm-style-iw-d {
  background: #fff !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  box-shadow: none !important;
  border: none !important;
}

/* Remove arrow container completely */
.gm-style-iw-tc {
  display: none !important;
}

.addLocationWrapper {
  position: absolute;
  top: 20px; /* Change to your need */
  right: 30px;
  z-index: 500;
}

.addLocationCircle {
  background-color: #dc3545;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 0 15px;
  cursor: pointer;
  overflow: hidden;
  color: white;
  white-space: nowrap;
  width: 50px;
  transition: width 0.3s ease, border-radius 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.addLocationCircle:hover {
  width: 170px; /* EXPAND width */
  border-radius: 50px; /* pill shape */
}

.plusIcon {
  font-size: 22px;
  display: flex;
  align-items: center;
}

.addText {
  opacity: 0;
  transition: opacity 0.25s ease;
  font-size: 15px;
}

.addLocationCircle:hover .addText {
  opacity: 1;
}
