h1,h2,h3,h4,h5,h6{
  color: var(--indigo) !important;
  font-weight: 300 !important;
  font-size: 24px !important;
}

::root{
  --primary_tec : #3FB7A5
}


*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Login  */
.login{
  display: flex;
  justify-content: space-evenly;
}

.centrado{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
body{
  background-color: rgb(248, 248, 248) !important;
}


a{
  text-decoration: none;
}

.color-verde-texto{
  color: #3FB7A5 !important;
  font-size: 22px !important;
}


.resultado-corte-good{
  background-color:var(--teal);
  padding:20px
}
.resultado-corte-mal{
  background-color:red;
  padding:20px
}

.numero-negativo{
  color: red;
}
.icon{
  font-size: 14px;
}

.centrar-div{
  width: 800px;
  border: 0px solid #707070;
  border-radius: 10px;
  justify-content: center;
  position: fixed; /*Posicionamiento absoluto*/
  top: 50%; /*Desde arriba, colocar al 50% de la pantalla*/
  left: 50%; /*Desde la izquierda, colocar al 50% de la pantalla*/
  margin-left: -175.5px; /*Restamos la mitad de ancho de la capa para centrarla horizontalmente*/
  margin-top: -210px; /*Restamos la mitad de ancho de la capa para centrarla horizontalmente*/
  width: 361px;
  height: 260px;
  text-align:left;
  background: var(--indigo);
  display: none;

}

/*Diseno para a links*/
a{
  color: var(--indigo) !important;
  font-size: 16px;
}
a:hover{
  text-decoration: none;
  color: #3dd8b9 !important;
  transition: color 0.3s ease !important;
}

a:hover div i{
  font-size: 30px !important;
  transition: font-size 1s ease !important;
}



.centrar-div-permisos{
  justify-content: center;
  position: fixed; /*Posicionamiento absoluto*/
  top: 10%; /*Desde arriba, colocar al 50% de la pantalla*/
  left: 50%; /*Desde la izquierda, colocar al 50% de la pantalla*/
  margin-left:-200px; ; /*Restamos la mitad de ancho de la capa para centrarla horizontalmente*/
  width: 400px;

  text-align:left;
  display: none;

}
.cerrar-sesion{
  color: #fff;
}
.cerrar-sesion .name{
  color: #fff;
  font-size: 22px;
}
.cerrar-sesion .close, h3{
  color: #fff;
}
.fas{
  font-size: 18px;
  color: var(--indigo);
}


.check {
width:20px;
height:20px;
}


/*Footer*/
footer{
  background-color: var(--indigo);
  margin-top:50px;
  width:100%;
  height:200px;

}

/* terminal para comprar */
.cobrar{
  position: relative;
  font-size: 30px;

}

.terminal-grid{

  display: flex;
  flex-direction: column;

}

.select-terminal{
  grid-row-start: 1;
}
.terminal-productos{
  grid-row-start: 2;

}
.btn-cobro-terminal{
  grid-row-start: 3;
}














/* REPORTES http://127.0.0.1:8000/reporte/ventas/productos */
.detalle-ventas-productos{
  position: fixed;
  background-color: gray;
  min-width: 180px;
  box-shadow: -20px 1px 16px 0px rgba(0,0,0,0.2);
  z-index: 80;
  left: 50%;
  top: 0px;
  width: 960px;
  height: 100%; opacity:0.95;


}

.no-activo{
  display: none;

}
.primario{
  color: var(--success);
  font-size: 22px;
  font-weight: 700;
}
.secundario{
  color: gray;
  font-size: 18px;
}

.descarga-excel{
  color:  var(--success);
  font-size: 18px;
}




.text-importante{
  font-size: 16px;
  font-weight: 500;
  color: var( --success);
}

.no-show{
  display: none;
}

.show{
  display: show;
}

.reporte-totales-card{
  border-radius: 19px;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow:  5px 5px 10px #a8a8a8,
             -5px -5px 10px #ffffff;
}
.reporte-totales-card-green{
  border-radius: 19px;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow:  5px 5px 10px #a8a8a8,
             -5px -5px 10px #ffffff;
  color:darkcyan;

}
.reporte-totales-card-red{

  border-radius: 19px;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow:  5px 5px 10px #a8a8a8,
             -5px -5px 10px #ffffff;
  color:darkred;

}
.separar{
  padding: 10px;;
}

/* Spinner */
.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
/* MENU */
@media only screen and (min-width: 1025px) {
  .show-1025 {
    display: show;
  }
}
@media only screen and (max-width: 1024px) {
  #nav-des {
    display: none;
  }
}


@media only screen and (min-width: 1024px) {
  #nav-phone{
    display: none;
  }
}


@media only screen and (max-width: 576px) {
  .no-show-cel{
    display: none;
  }

  .table{
    font-size: 11px;;
  }
}

@media only screen and (max-width: 1199px) {

  .imagen-login{
    display: none;
  }
}


.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99;
  top: 90px;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.8s;
  padding-top: 100px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.cred-dis{
  font-size: 30px;
}

.negritas{
  font-weight: 900;
}

.info-text{
  background-color: rgb(0, 153, 195);
  padding: 6px;
  color: white;
  margin-bottom: 20px;
}


/* NUEVO ESTILO */
.input-redondo{
  border: 1px rgb(224, 224, 224) solid;
  padding: 10px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow:  1px 1px 1px  #dadada;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
}

.select2.select2-container .select2-selection {
  border: 1px rgb(181, 181, 181) solid !important;
  padding: 7px !important;
  border-radius: 5px !important;
  box-shadow:  1px 1px 1px  #d3d3d3 !important;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;

  height: 44px;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none !important;
  transition: all .2s ease-in-out;
}
.select2.select2-container .select2-selection .select2-selection__arrow {
  background: #f8f8f8;
  border-left: 1px solid #ccc;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 8px 8px 0;
  height: 42px;
  width: 33px;
  margin-top: 10px;

}


button.dt-button {
  margin-left: 0;
  background: #3FB7A5 !important;
  padding: 12px;
  border-radius: 12px;
  font-size: 15px;
}

.pagination-link.is-current {
  background-color: #3FB7A5;
  border-color: #3FB7A5;
  color: #fff;
}







.select-redondo select{
  appearance: none;
  -webkit-appearance: none;
	-moz-appearance: none;

}
.select-redondo select::-ms-expand {
  display: none;
}



.select-redondo i{
	position: absolute;
	right: 20px;
	top: calc(50% - 13px);
	width: 16px;
	height: 16px;
	display: block;
	border-left:4px solid #3FB7A5;
	border-bottom:4px solid #3FB7A5;
	transform: rotate(-45deg); /* Giramos el cuadrado */
	transition: all 0.25s ease;
}

.select-redondo:hover i{
	margin-top: 3px;
}

.color-gris{
  color: #707070;
}
.pantalla-completa{
  height: 80vh;
}
.terminal{
  margin-top: 15px;

  padding: 0px;

  background: #ffffff;
  box-shadow:  5px 5px 10px #e6e6e6;
  width: 100%;
  height: 40vh;
  position: relative;
  overflow-y: scroll;
}
@media(min-width:768px){
  .terminal{
    padding: 25px;
    height: 50vh;
  }
}

.terminal .head{
  text-transform: uppercase;
}

.color-verde{
  background-color: #3FB7A5;
  color: white;
}

.radio input,
.radio select{
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.radio input{
	visibility: hidden;
	position: absolute;
	right: 0;
}

.radio{
	position: relative;
	margin-bottom: 30px;
	padding:5px 0 5px 60px; /* Damos un padding de 60px para posicionar el elemento <i> en este espacio*/
	display: block;
}

/* Estas reglas se aplicarán a todos las elementos i después de cualquier input*/
.radio input + i{
 background: #f0f0f0;
 border:2px solid rgba(0,0,0,0.2);
 position: absolute;
 left: 0;
 top: 0;
}

/* Estas reglas se aplicarán a todos los i despues de un input de tipo radio*/
.radio input[type=radio] + i{
 height: 30px;
 width: 30px;
 border-radius: 100%;
 left: 15px;
}

.radio input[type=radio] + i:before{
	content: '';
	display: block;
	height: 18px;
	width: 18px;
	background: red;
	border-radius: 100%;
	position: absolute;
	z-index: 1;
	top: 4px;
	left: 4px;
	background:#3FB7A5;
	transition: all 0.25s ease; /* Todas las propiedades | tiempo | tipo movimiento */
	transform: scale(0) /* Lo reducimos a 0*/ ;
	opacity: 0; /* Lo ocultamos*/
}

.radio input[type=radio]:checked + i:before{
	transform: scale(1);
	opacity: 1;
}

.radio:hover input[type=radio]:not(:checked) + i{
	background: #B1E8CD;
}


.ticket td,
.ticket th,
.ticket tr,
.ticket table {
    border-top: 1px solid black;
    border-collapse: collapse;
}

td.producto,
th.producto {
    width: 75px;
    max-width: 75px;
}

td.cantidad,
th.cantidad {
    width: 40px;
    max-width: 40px;
    word-break: break-all;
}

td.precio,
th.precio {
    width: 40px;
    max-width: 40px;
    word-break: break-all;
}

.centrado {
    text-align: center;
    align-content: center;
}

.ticket {
    width: 155px;
    max-width: 155px;
}

img {
    max-width: inherit;
    width: inherit;
}


.reset-password{
  display: -webkit-flex;
  display: flex;
  color: #000;
  font-weight: 600;
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px dashed #000;
  color: #000;
  font-weight: 500;
}

/* BOTONES */
.delete-btn{
  color: red;
}
.edit{
  color : orange;
}

.border-ed{
  border: 1px solid rgb(207, 207, 207);
}

.title-login{
  font-size: 30px;
  font-weight: 600;
}

.fa-plus-circle{
  color: #3FB7A5;
  font-size: 25px;
}

.fa-trash{
  color: red;
}

/* -----------------------administrador ----------------------- */
.nombre{
  font-size: 20px;
  font-weight: bold;
}
.detalles{
  font-size: 14px;
  color: #C1C1C1;
  font-weight: 200;
}
.linknew{
  font-size: 14px;
  color: #28A3E5;
}

.dinero{
  font-size: 28px;
  font-weight: 900;
}

.card-h-160{
  height: 160px;
}

.t-verde{
  color: #63B5A5;
}

.alerta-pago{
  background-color: red;
  color: white;
  font-weight: 900;
  font-size: 19px;
}



.table{
  font-size: 12px;
}


/* Style The Dropdown Button */
.dropbtn {
  background-color: #3FB7A5;
  color: white;
  padding: 10px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position:absolute;
  background-color: #d6d6d6;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999;
  border-radius: 10px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 6px 6px;
  font-size: 11px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3FB7A5;
}


/* Pagination */
.pagination1 {
  display: inline-block;
}

.mouse{
  cursor: pointer;
}

.pagination1 a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 20px;
}

.pagination1 a.active {
  background-color: #3FB7A5;
  color: white;
  border-radius: 20px;
}

.pagination1 a:hover:not(.active) {background-color: #ddd;}




footer{
  min-height: 20rem;
  background-color: #111 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer img{
  width: 15rem;
}

.redes_sociales a{


  color: white;
  font-size: 2.5rem;
}

.redes_sociales a:hover{
  color: #3FB7A5;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}


.drag-area{
  border: 4px dashed rgb(154, 154, 154);
  height: 20rem;
  width: 100%;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #d4d4d4;

}
.drag-area.active{
  background-color: #06486b;
  color: white !important;
  border: 5px dashed rgb(140, 144, 145);
}

.drag-area h2{
  font-size: 33px;
  color: #fbfbfb;
  font-weight: 700;
}

.drag-area span{
  font-size: 25px;
  color: #818181;
}

.drag-area .button-up{
  background-color: chocolate;
  padding: 10px 25px;
  font-size: 20px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  border-radius: 10px;
}

.file-container{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: solid 1px rgb(116, 116, 116) ;
  margin-top: 3px;
  background-color: white;
}

.file-container img{
  width: 50px;
  border-radius: 10px;
}

#preview{
  margin-top: 10px;
}
.status-text{
  padding: 0 10px;
}

.success{
  color: #037a62;
}
.failure{
  color: red;
}

/* Pagina para productos */
.contenedor-imagenes{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.imagen-editar{
  width: 160px;
  border: 2px solid rgb(153, 153, 153);
  border-radius: 10px;
  position: relative;

}




.imagen-editar img{
  width: 90%;
}
.imagen-editar-eliminar {
  left: 85%;
  padding: 3px;
  border: none;
  color: rgb(180, 39, 39);
  position: relative;
  background-color: none;
}

.imagen-editar-eliminar i{
  font-size: 20px;

}


.cancelacion_facturas{
  background-color: red;
  border-radius: 10px;
  padding: 10px;
  color: rgb(104, 104, 104);
  justify-content: center;
  align-items: center;
  position:absolute;
  z-index: 999;
  margin: auto 33% ;
  text-align: center;
}


/* Complemento de pago */
.cp-pago h1,h4{
  font-size: 16px;
  color: #06486b;
  font-weight: 700;
}


.btn-almacen{
  background-color: #0f44ad;
  width: 100%;
  color: white;
  padding: 5px;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
}



.config-regenerar-inventarios{

  background-color: #06486b;
  color: white;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
}

.config-regenerar-inventarios p{
    margin-top: 10px;
}
/* Carga antes de mostrar o al crear un peticion  */



button.dt-button, div.dt-button, a.dt-button, input.dt-button {


  color: white;
  border: none;
  background-color: rgba(0, 0, 0, 0.1);
  background: #0f44ad;

}

button.dt-button:hover:not(.disabled), div.dt-button:hover:not(.disabled), a.dt-button:hover:not(.disabled), input.dt-button:hover:not(.disabled) {

  color: white;
  border: none;
  background-color: rgba(0, 0, 0, 0.1);
  background: #3461bb;

}

div.dt-button-collection {
  position: absolute;
  border: none;
  background-color: white;
  overflow: hidden;
  z-index: 2002;
  border-radius: 5px;
  color: black;
  /* box-shadow: 3px 4px 10px 1px rgba(0, 0, 0, 0.3); */
  box-sizing: border-box;
}

div.dt-button-collection  span {
  font-style: inherit;
  font-weight: inherit;
  color: black;
}

div.dt-button-collection button.dt-button:active:not(.disabled), div.dt-button-collection button.dt-button.active:not(.disabled), div.dt-button-collection div.dt-button:active:not(.disabled), div.dt-button-collection div.dt-button.active:not(.disabled), div.dt-button-collection a.dt-button:active:not(.disabled), div.dt-button-collection a.dt-button.active:not(.disabled) {
  /* background-color: #dadada; */
  /* background: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%); */
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr="#f0f0f0", EndColorStr="#dadada");
  /* box-shadow: inset 1px 1px 3px #666; */
}




.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 200ms ease-in;
	-moz-transition: opacity 200ms ease-in;
	transition: opacity 200ms ease-in;
	pointer-events: none;
}
.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}
.modalDialog > div {
	width: 1200px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
  -webkit-transition: opacity 200ms ease-in;
-moz-transition: opacity 200ms ease-in;
transition: opacity 200ms ease-in;
}
.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}
.close:hover { background: #00d9ff; }









.gradient-custom {
  /* fallback for old browsers */
  background: #13b9cf;

  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(to right, rgb(250, 250, 250), rgb(105, 106, 106));

  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: linear-gradient(to right, rgb(250, 250, 250), rgb(105, 106, 106))
  }


  .lbl{
    display: inline-block !important;
    width: 65px !important;
    height: 33px !important;
    background: #979797 !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    position: relative !important;
    transition: .2s !important;
  }

  .lbl::after{
    content: '' !important;
    display: block !important;
    width: 25px !important;
    height: 25px !important;
    background: #eee !important;
    border-radius: 100px !important;
    position: absolute !important;
    top: 4px !important;
    left: 4px !important;
    transition: .1s !important;
  }

  .switch:checked + .lbl::after{
    left: 36px !important;
  }

  .switch:checked + .lbl{
    background: #00C8B1 !important;
  }

  .switch{
    display: none !important;
  }

  .filtrado-fechas{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;

  }

  .filtrado-fechas input:nth-child(1){
   grid-column-start: 1;
   grid-column-end: 2;

  }

  .filtrado-fechas input:nth-child(2){
    grid-column-start: 2;
    grid-column-end: 3;

   }


   #searchInput {
    padding: 8px;
    width: 500px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  #resultsList {
    list-style-type: none;
    padding: 0;
    max-height: 200px; /* Altura máxima de la lista */
    overflow-y: auto; /* Añadir desplazamiento vertical si es necesario */
    border: 1px solid #ccc; /* Agregar un borde para separar visualmente */
    max-width: 500px; /* Ancho de la lista de resultados */
    top: 100%; /* Colocar la lista debajo del campo de entrada */
    left: 0; /* Alinear la lista a la izquierda del campo de entrada */
    background-color: #fff; /* Fondo blanco */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra ligera */
  }

  #resultsList li {
    background-color: #f4f4f4;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer; /* Agregar cursor indicando que es interactivo */
  }

  #resultsList li:hover {
    background-color: #e0e0e0; /* Cambiar el color de fondo al pasar el ratón */
  }


  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .pagination-button {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
  }

  .pagination-button.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
  }

  /* Clase para agrandar la ventana SweetAlert */
.ventana-grande {
  width: 90% !important;
  max-width: 1200px !important;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
}

/* Clase para manejar scroll horizontal en la tabla si se necesita */
.tabla-scroll {
  overflow-x: auto;
}

/* Clase para ajustar tamaño de la tabla */
.tabla-productos {
  width: 100%;
  font-size: 14px;
}




.select2-container--default .select2-selection--single {
    height: 2.75rem;
    border-radius: 0 4px 4px 0; /* pegado al botón estático de la izquierda */
    border-color: #dbdbdb;
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    font-size: 0.95rem;
}

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            line-height: 2.75rem;
            padding-left: 0;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 100%;
            right: 0.5rem;
        }

        .select2-container {
            width: 100% !important;
        }

        .select2-results__option .cliente-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .select2-results__option .cliente-avatar {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            color: #4b5563;
        }

        .select2-results__option .cliente-texts {
            display: flex;
            flex-direction: column;
            font-size: 0.8rem;
        }

        .select2-results__option .cliente-main {
            font-weight: 600;
        }

        .select2-results__option .cliente-sub {
            font-size: 0.7rem;
            color: #6b7280;
        }



