.dropdown-menu {
  /*z-index: 1000;*/
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#copy-button {
  height: calc(100% - 6.5px); /* Subtract 2px to account for the border */
}

/* Tooltip text */
.tooltiptext {
  visibility: hidden;
  opacity: 0;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  z-index: 1;
  bottom: 125%;
  margin-left: -60px;
  transition: opacity 0.3s;
}

textarea::placeholder {
  opacity: 0.5;
}

.active-navigation {
  color: #2AD167; /* green-500 */
  background-color: #333F51; /* coolGray-800 */
}

.active-pricing {
  color: white;
  background-color: #2AD167; /* green-500 */
}

.responsive-image {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .responsive-image {
    width: auto;
  }
}