.floating-button {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #007bff;
    color: white;
    font-size: 24px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1000;
    }
    .floating-button:focus {
        outline: none;
    }
    .floating-button:hover {
        outline:none;
        background-color: #0056b3;
    }

.icon-listener {
    cursor: pointer;

}
.icon-listener:hover {
    color: #000;
}

.cursor-help {
    cursor: help;
}

/* =============== Custom scroll datatables =============== */
.div_x_scroll {

    overflow-x: auto; /*para la barra de desplazamiento horizontal */
    /* Estilos personalizados */
    &::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    &::-webkit-scrollbar-thumb {
        background: #007bff;
        border-radius: 5px;
        transition: background 0.3s; /* Añade una transición para el efecto de hover */
    }
    &::-webkit-scrollbar-thumb:hover {
      background: #fd3a08aa; /* Cambia a un tono más oscuro en hover */
    }
    &::-webkit-scrollbar-track {
        background: #aaaaaa;
    }
}

/* Estilos personalizados para el formulario */
#userForm .form-control {
    border-radius: 0.25rem;
    box-shadow: none;
}

#userForm .form-label {
    font-weight: bold;
}

#userForm .modal-footer {
    border-top: none;
}

.custom-drone-modal .modal-dialog {
    max-width: 1200px; /* Ajusta el ancho según sea necesario */
    height: 800px;
}

.form-step {
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  }
  
  .form-step.active {
    opacity: 1;
    display: block;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  }
  
  .progress-bar {
    transition: width 0.5s ease-in-out;
  }

/* =============== Custom icon button =============== */
.custom-icon-button {
    padding: 0.6rem;
    border-radius: 7px;
    color: #fff;
    background-color: #1a3946;
    border-color: #1a3946;
    box-shadow: 2px 2px 4px #8d9ba1;
    font-size: 1.3rem;
    margin: 0.2rem;
    transition: background-color 0.2s ease-in-out; /* Added transition for hover effect */
  }
  
  /* .custom-icon-button {
    background-color: #2b5263;
  } */
  
  .custom-icon-button:mousedown {
    background-color: #122933;
  }
  
  .custom-icon-button:hover {
    background-color: #2b5263;
  }