.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;
    }
    .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;
  }

