/* public/css/support.css */
.fixed-action-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#hide-button {
  width: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  margin-top: -8px;
  cursor: pointer;
}

#support-button {
  background-color: #dc582a;
  color: white;
  border: 1px solid #dc582a;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
}

#support-options {
  list-style: none;
  padding: 8px; /* Add padding inside the container */
  margin: 0;
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  display: none;
  background-color: #dc582a;
  border: 1px solid #dc582a;
  border-radius: 24px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.support-option {
  display: flex;
  align-items: center;
  background-color: white;
  color: black;
  padding: 10px;
  text-decoration: none;
  margin: 15px 0;
  border: 1px solid white;
  border-radius: 21px;
  margin: 8px 0; /* Adds vertical spacing between each button */
}
#first-item-li {
  margin-top: 26px;
}
.support-option.phone {
  color: black;
  font-size: 16px;
  display: flex;
  margin: 0; /* Bỏ khoảng cách mặc định */
}


.support-icon {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .fixed-action-btn {
      position: fixed;
      bottom: 0;
      right: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      background-color: #dc582a;
      border-radius: 0;
  }

  #support-button {
      width: auto;
      font-size: 18px;
      background-color: transparent;
      border: none;
  }
}
