/* Clase para el botón excel */
.btn-excel {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #fff; /* Color blanco del texto */
  text-align: center;
  /*margin-left: 10px;*/
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #00d27a; /* Color de fondo de éxito */
  background-image: var(--bs-gradient);
  border-color: #00d27a;
  border: 1px solid transparent;
  padding: 0.1875rem 0.75rem; /* Tamaño pequeño como btn-sm */
  font-size: 0.875rem; /* Tamaño pequeño */
  border-radius: 0.2rem; /* Borde redondeado pequeño */
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: 5px;
}

  .btn-excel:hover {
    color: #fff; /* Mantiene el color blanco en hover */
    background-color: #00ac64; /* Color en hover */
    background-image: var(--bs-gradient);
    border-color: #009f5c;
  }

  .btn-excel i {
    margin-right: 0.25rem; /* Espacio entre el icono y el texto */
  }

/* Clase para el botón PDF */
.btn-pdf {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #fff; /* Color blanco del texto */
  text-align: center;
  /*margin-left: 10px;*/
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e63757; /* Color de fondo de btn-danger */
  background-image: var(--bs-gradient);
  border-color: #e63757;
  border: 1px solid transparent;
  padding: 0.1875rem 0.75rem; /* Tamaño pequeño como btn-sm */
  font-size: 0.875rem; /* Tamaño pequeño */
  border-radius: 0.2rem; /* Borde redondeado pequeño */
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: 5px;
}

  .btn-pdf:hover {
    color: #fff; /* Mantiene el color blanco en hover */
    background-color: #db1b3f; /* Color en hover de btn-danger */
    background-image: var(--bs-gradient);
    border-color: #d01a3b;
  }

  .btn-pdf i {
    margin-right: 0.25rem; /* Espacio entre el icono y el texto */
  }

/* Clase para el botón Print */
.btn-print {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #fff; /* Color blanco del texto */
  text-align: center;
  vertical-align: middle;
  /*margin-left: 10px;*/
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #2c7be5; /* Color de fondo de btn-primary */
  background-image: var(--bs-gradient);
  border-color: #2c7be5;
  border: 1px solid transparent;
  padding: 0.1875rem 0.75rem; /* Tamaño pequeño como btn-sm */
  font-size: 0.875rem; /* Tamaño pequeño */
  border-radius: 0.2rem; /* Borde redondeado pequeño */
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: 5px;
}

  .btn-print:hover {
    color: #fff; /* Mantiene el color blanco en hover */
    background-color: #1a68d1; /* Color en hover de btn-primary */
    background-image: var(--bs-gradient);
    border-color: #1862c6;
  }

  .btn-print i {
    margin-right: 0.25rem; /* Espacio entre el icono y el texto */
  }

#btn-create {
  display: none; /* Esconde el botón inicialmente */
}

/* Clase para el botón Crear */
.btn-crear {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #fff; /* Color blanco del texto */
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #5a9be5; /* Azul más claro */
  background-image: var(--bs-gradient);
  border-color: #5a9be5;
  border: 1px solid transparent;
  padding: 0.1875rem 0.75rem; /* Tamaño pequeño como btn-sm */
  font-size: 0.875rem; /* Tamaño pequeño */
  border-radius: 0.2rem; /* Borde redondeado pequeño */
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: 5px; /* Espacio entre botones */
}

  .btn-crear:hover {
    color: #fff; /* Mantiene el color blanco en hover */
    background-color: #4a8dd1; /* Azul más oscuro en hover */
    background-image: var(--bs-gradient);
    border-color: #4286c6;
  }

  .btn-crear i {
    margin-right: 0.25rem; /* Espacio entre el icono y el texto */
  }

/* Más específico para aumentar la prioridad */
a.btn-crear {
  background-color: #5a9be5 !important; /* Asegura que el fondo azul sea aplicado */
}

  a.btn-crear:hover {
    color: #fff !important; /* Mantiene el color blanco en hover */
    background-color: #4a8dd1 !important; /* Azul más oscuro en hover */
    background-image: var(--bs-gradient);
    border-color: #4286c6 !important;
  }

/* Clase para el botón Crear de Datatable */
.btn-creardata {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #fff; /* Color blanco del texto */
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #5a9be5; /* Azul más claro */
  background-image: var(--bs-gradient);
  border-color: #5a9be5;
  border: 1px solid transparent;
  padding: 0.32rem 0.8rem; /* Tamaño pequeño como btn-sm */
  font-size: 0.875rem; /* Tamaño pequeño */
  border-radius: 0.2rem; /* Borde redondeado pequeño */
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: 5px; /* Espacio entre botones */
  position: relative;
  top: 1.8px; /* Baja el botón */
}

  .btn-creardata:hover {
    color: #fff; /* Mantiene el color blanco en hover */
    background-color: #4a8dd1; /* Azul más oscuro en hover */
    background-image: var(--bs-gradient);
    border-color: #4286c6;
  }

  .btn-creardata i {
    margin-right: 0.25rem; /* Espacio entre el icono y el texto */
  }

/* Más específico para aumentar la prioridad */
a.btn-creardata {
  background-color: #5a9be5 !important; /* Asegura que el fondo azul sea aplicado */
}

  a.btn-creardata:hover {
    color: #fff !important; /* Mantiene el color blanco en hover */
    background-color: #4a8dd1 !important; /* Azul más oscuro en hover */
    background-image: var(--bs-gradient);
    border-color: #4286c6 !important;
  }

.btn-equal {
  width: 60px; /* Ajusta este valor según el tamaño deseado */
  height: 40px; /* Ajusta este valor según el tamaño deseado */
  text-align: center;
  line-height: 1; /* Ajusta el espacio vertical del texto dentro del botón */
  padding: 0; /* Elimina el espacio adicional */
}
