/* Estilos comunes para la sección pedir */
body {
	background-color: rgb(241, 241, 241);
	user-select: none;
	-moz-user-select: none;
}

/* Forzar centrado de navegación */
nav.nav-pantalla {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	text-align: center !important;
}

/* Estilos para el combo de rubros */
.combo-rubros select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 8px 40px 8px 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: white;
	cursor: pointer;
	height: 50px;
	font-weight: bolder;
	font-size: 1.2em;
	letter-spacing: 1.5px;
	width: 100%;
	box-sizing: border-box;
	background-image: none;
}

.combo-rubros select:focus {
	outline: none;
	border-color: #007bff;
}

/* Estilos para la flecha desplegable */
.combo-rubros::after {
	content: '▼';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	pointer-events: none;
	font-weight: 900;
	color: #000;
	font-size: 16px;
	z-index: 10;
	text-shadow: 0 0 1px #000;
}

/* Estilos de inputs y botones */
.inp-buscar {
	height: 50px;
	font-weight: bolder;
	font-size: 1.2em;
	letter-spacing: 1.5px;
	padding-left: 10px;
}

input:focus {
	border: 3px solid rgb(013, 110, 253);
	outline: none;
}

.btn-buscar {
	height: 50px;
	border: 1px solid black;
	border-radius: 5px;
	transition: transform 0.1s ease;
}

.btn-buscar:hover {
	color: white;
	background-color: rgb(013, 110, 253);
	border: none;
}

.btn-buscar:active {
	transform: translateY(2px);
}

.btn-limpiar {
	height: 50px;
	border: 1px solid black;
	border-radius: 5px;
	transition: transform 0.1s ease;
}

.btn-limpiar:hover {
	color: white;
	background-color: orangered;
	border: none;
}

/* Estilos de paginación */
ul.pagination {
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
}

ul.pagination li {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: -1px;
	border: 1px solid #333;
	width: 50px;
	height: 40px;
}

.active {
	background-color: #007bff;
	color: white;
}

ul.pagination li:last-child {
	margin-right: 0;
}

ul.pagination li a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #333;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: 1.1em;
}

ul.pagination li a:hover {
	background-color: #ddd;
}

/* Estilos de productos */
.grid-item-prg {
	border: 1px solid gray;
	display: grid;
	grid-template-rows: 1fr 35px 80px 120px;
	grid-template-columns: 1fr;
	grid-gap: 0px;
	background-color: white;
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
}

.img {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 2px solid rgba(240, 240, 240, 1);
}

img {
	width: 100%;
}

.codigo {
	padding-top: 5px;
	padding-left: 10px;
}

.descripcion {
	font-size: 17px;
	padding-left: 10px;
}

.pie {
	padding-top: 0px;
	width: 100%;
	text-align: left;
	font-weight: bolder;
	color: royalblue;
	display: flex;
	flex-direction: column;
	height: 120px;
	height: 300px;
}

.lista {
	font-family: "Roboto Condensed", sans-serif;
	padding-right: 10px;
	text-align: right;
	height: 25px;
	line-height: 25px;
}

button {
	font-family: "Roboto Condensed", sans-serif;
	width: 100%;
	height: 40px;
	font-size: 1.1em;
	letter-spacing: 3px;
	font-weight: bolder;
	cursor: pointer;
	border: none;
}

button:hover {
	font-size: 1.1em;
	font-weight: bolder;
	color: white;
	background-color: black;
}

.btn-login {
	background-color: #dc3545;
	color: white;
	font-size: 0.9em;
	letter-spacing: 1px;
}

.btn-login:hover {
	background-color: #c82333;
	color: white;
}

/* Estilos de cantidad */
.cantidad {
	display: flex;
	flex-direction: row;
	padding-top: 10px;
}

.cantidad #lbl_cantidad {
	font-style: italic;
	font-size: 1.2em;
	letter-spacing: 1.25px;
	color: rgba(0, 0, 0, 0.5);
}

.cantidad input {
	width: 50px;
	border-radius: 5px;
	text-align: center;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
}

.cantidad label {
	vertical-align: center;
	font-style: italic;
	font-size: 1.2em;
	letter-spacing: 1.25px;
	color: rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
	position: static !important;
	width: 100%;
	border-top: 5px solid rgb(252, 173, 060);
	color: rgb(000, 077, 139);
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.5em;
	font-weight: bolder;
	padding: 10px;
	background-color: rgb(240, 240, 240);
	margin-top: 20px !important;
	bottom: auto !important;
}