.fixed-actions-container {
    display: flex;
    gap: 5px; /* Ajusta según sea necesario */
}

.fixed-actions-container button {
    flex-shrink: 0;
}

.custom-modal .modal-dialog {
    max-width: 95%; /* Ajusta el valor según sea necesario */
}

#stockModal {
z-index: 9999;
}

.selectize-input {
border-radius: 0.5rem;
}

.modal {
z-index: 9999; /* Z-index alto para que aparezca encima de otros elementos */
}

.daterangepicker .drp-selected {
    display: none !important;
}


@media (min-width: 1200px) {
    .g-sidenav-hidden .navbar-vertical {
        max-width: 5.8rem !important;
    }
}


.ms-auto.d-flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
  }
  
  .ms-auto.d-flex button {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  
  .ms-auto.d-flex button i.material-icons,
  .ms-auto.d-flex button .text {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
  }
  
  .ms-auto.d-flex button:last-child {
    margin-right: 0;
  }
  
  .ms-auto.d-flex i.material-icons {
    margin-right: 5px;
  }
  


.table td,
.table th {
  white-space: nowrap;
}


.sidenav-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-vertical .navbar-brand>img, .navbar-vertical .navbar-brand-img {
  max-height: 3rem !important;
}

.sidenav-header .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  max-height: 3rem !important;
  display: block;
}



/* Para pantallas pequeñas */
@media (max-width: 768px) {
  .alert .d-flex {
      flex-direction: column;  /* Coloca los elementos en columna */
  }

  .alert .flex-grow-1 {
      width: 100%;  /* El select ocupa todo el ancho */
  }

  .alert .btn {
      margin-top: 0px;  /* Un pequeño margen para separar el botón del select */
  }
}

/* Para pantallas grandes */
@media (min-width: 769px) {
  .alert .d-flex {
      flex-direction: row;  /* Mantiene los elementos en fila */
  }
  
  .alert .flex-grow-1 {
      width: auto;  /* El select ocupa solo el espacio necesario */
  }

  .alert .btn {
      margin-top: 0;  /* Sin margen adicional en pantallas grandes */
  }
}


.payment-detail {
  margin-bottom: 5px;  /* Reducir el espacio entre los párrafos */
  text-align: left;   /* Alineación a la derecha */
}