/* Quitar botones de incremento y decremento en Chrome, Safari, Edge y Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Quitar botones de incremento y decremento en Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.login-logo a {
  color: #7FD15E;
}

.login-logo p {
  font-size: 14px;
}

.login-box .derechos {
  text-align: center;
}

.my-theme {
  background-color: #00AFE3;
  color: white !important;
}

.head-dialog {
  background-color: #FAA943;
  border-bottom: 5px solid #00AFE3;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white !important;
}

.btn-success-sidur {
  background-color: #FAA943;
  color: white !important;
}

.btn-primary-sidur {
  background-color: #00AFE3;
  color: white !important;
}

.head-module {
  background-color: #999A9D;
}

.head-module h3 {
  color: #F2F2F2 !important;
  font-weight: bold;
}

.head-dialog * {
  color: white !important;
}

.my-theme .nav-link {
  color: white !important;
}

.aside {
  background-color: #F3F3F4;
}

.aside .nav-link {
  color: rgb(250, 169, 67) !important;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-white {
  background-color: #fff;
  color: #000 !important;
}









/* Overlay de drag & drop que aparece al arrastrar archivos */
.drop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 123, 255, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  border: 3px dashed #fff;
  transition: background-color 0.3s ease-in-out;
  z-index: 9999;
  /* Para que aparezca encima de todo */
  cursor: pointer;
}

.drop-overlay.active {
  display: flex;
}

/* Sección visible para selección manual */
.manual-select {
  border: 2px dashed #007bff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.manual-select:hover {
  background-color: #e9ecef;
}

/* Ocultar input file */
#fileInput {
  display: none;
}