/* Estilos para el FAB button custom */
.custom-fab-button {
  position: fixed !important;
  bottom: 60px !important;
  left: 10px !important;
  width: 56px !important;
  height: 56px !important;
  background-color: #5190ef !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  cursor: pointer !important;
  box-shadow: 0 6px 12px 0 rgba(7, 8, 16, 0.08), 0 8px 16px 0 rgba(0, 0, 0, 0.15) !important;
  z-index: 9999 !important;
  font-size: 24px !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
}

.custom-fab-button:hover {
  background-color: #4783db !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 16px 0 rgba(7, 8, 16, 0.12), 0 12px 24px 0 rgba(0, 0, 0, 0.2) !important;
}

.custom-fab-button:active {
  transform: scale(0.95) !important;
}

.custom-fab-button i {
  font-size: 24px !important;
  line-height: 1 !important;
}
