/* General */
.general {
  background-color: rgba(27, 27, 27);
}

h3,
h4,
h5 {
  color: rgb(181, 185, 188);
  text-align: center;
  margin: 2%;
}

#migaIcono {
  width: 100px;
  height: 50px;
  cursor: pointer
}

label {
  color: rgb(181, 185, 188);
}

input {
  background-color: rgb(61, 68, 73);
}

::placeholder {
  color: rgb(181, 185, 188);
}

.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
  cursor: pointer;
  transition-duration: .3s;
  overflow: hidden;
  position: relative;
}

.material-icons {
  font-size: 16px;
}

.svgIcon {
  width: 12px;
  transition-duration: .3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: .3s;
  background-color: rgb(255, 69, 69);
  align-items: center;
}

.button:hover .svgIcon {
  width: 50px;
  transition-duration: .3s;
  transform: translateY(60%);
}

.button::before {
  position: absolute;
  top: -20px;
  content: "Vaciar Tablas";
  color: white;
  transition-duration: .3s;
  font-size: 2px;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  transform: translateY(30px);
  transition-duration: .3s;
}

.total {
  text-align: right;
}

.remove-arrow::after {
  content: none !important;
}

/* Nav */
#nav-item {
  color: rgb(181, 185, 188);
}

#nav-dropdown {
  background-color: rgb(33, 36, 41);
}

/* Botones  */
#registrar {
  background-color: rgb(52, 168, 83);
  border: none;
  border-radius: 8px;
  margin-right: 3%;
  font-family: Arial;
}

#borrar {
  background-color: rgb(255, 0, 0);
  border-radius: 8px;
  border: none;
  font-family: Arial;
}

#btn-group {
  display: flex;
  justify-content: center;
  margin: 4%;
}

/* Fin botones */

/* Datatable Container */
.datatable-container {
  font-family: "Noto Sans", sans-serif;
  color: #000000;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
}

/* Tabla dentro del contenedor */
.datatable-container table {
  width: 100%;
  border-collapse: collapse;
  color: #000000;
  background-color: #F5F5DC;
}

.datatable-container th,
.datatable-container td {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #3C3C3C;
  color: #000000;

}









/* Estilos para el formulario de filtro */
.form-filtro {
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Estilo de los campos de formulario */
.form-filtro .custom-input {
  border-radius: 5px;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ddd;
  box-shadow: none;
  transition: border-color 0.3s ease-in-out;
  margin-right: 10px;
}

/* Estilo cuando el campo está enfocado */
.form-filtro .custom-input:focus {
  border-color: #3CB371;
  outline: none;
}

/* Estilo para el botón */
.form-filtro .custom-btn {
  background-color: #3CB371;
  /* Verde */
  color: #ffffff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease-in-out;
}

.form-filtro .custom-btn:hover {
  background-color: #2e9e59;
  cursor: pointer;
}

/* Alineación en el formulario */
.form-filtro .d-flex {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Responsividad */
@media (max-width: 768px) {
  .form-filtro {
    padding: 10px;
  }

  .form-filtro .d-flex {
    flex-direction: column;
  }

  .form-filtro .custom-input,
  .form-filtro .custom-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}