a:link, a:visited, a:hover, a:active{
  text-decoration: none !important;
}

.rounded, .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-radius:8px !important;
}

.rounded-start,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.rounded-end,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.rounded-top,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.rounded-bottom,  .select2-selection, .bootstrap-tagsinput, .bootstrap-tagsinput > .badge{
	border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.backgroundImage{
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}

.form-check-input{
  width: 1.2em !important;
  height: 1.2em !important;
}

.form-check-input:active,.form-check-input:focus,.btn{
  outline:0 !important;
  box-shadow: none !important;
}

.list-group-item {
  border:0px !important;
}

input.showQuantity::-webkit-inner-spin-button, 
input.showQuantity::-webkit-outer-spin-button{ 
	-webkit-appearance: none; 
	margin: 0; 
}

.order-type-btn {
    min-width: 120px; /* Ancho mínimo para todos los botones */
    height: 80px; /* Altura fija para todos los botones */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px; /* Tamaño de fuente del texto */
    padding: 10px;
    white-space: normal; /* Permitir que el texto se divida en varias líneas si es necesario */
}

.order-type-btn i {
    font-size: 24px; /* Tamaño más grande para los íconos */
    margin-bottom: 5px; /* Espacio reducido entre el ícono y el texto */
}

.order-type-btn span {
    line-height: 1; /* Ajustar la altura de línea para que el texto no añada espacio extra */
}
.domiciliary-container.d-none + .col-3 {
    width: 50%; /* Ajustar el ancho del campo "Vendedor" cuando "Domiciliario" está oculto */
}
.sabor-input[readonly] {
    background-color: white;
    cursor: pointer;
}
.sabor-dropdown {
    margin-top: 2px;
    border-radius: 0.375rem;
}
.sabor-dropdown .list-group-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}
.sabor-dropdown .list-group-item:hover {
    background-color: #f8f9fa;
}
#filtroSabores {
    padding: 12px;
    font-size: 14px;
}
.btn-inventory {
    background: linear-gradient(135deg, #198754, #157347);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 30px;              /* 🔹 más alto */
    border-radius: 14px;
    border: none;
    min-width: 280px;                /* 🔹 más ancho */
    box-shadow: 0 6px 15px rgba(25, 135, 84, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ✨ Hover */
.btn-inventory:hover {
    background: linear-gradient(135deg, #20c997, #198754);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(25, 135, 84, 0.5);
    cursor: pointer;
}

/* 🖱 Click */
.btn-inventory:active {
    transform: scale(0.97);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ♿ Accesibilidad */
.btn-inventory:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.4);
}