body {
	min-width: 320px;
	font-family: 'Roboto', Sans-Serif;
	background: #f8f9fa;
	color: #333;
}

main {
	min-height: 800px;
}

/*ENCABEZADO DE LA PAGINA*/
.header {
	background-color: #333;
}


/*CUERPO DE LA PAGINA*/
footer {
	padding:10px auto;
	text-align:left;
	background: #333;
	color: #f8f9fa;
	height: 150px;
}

/*ETIQUETAS GENERALES*/

section {
	min-height: 300px;
	padding: .75em;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: #b0afbe 2px 2px 5px;
	margin-bottom: .75em;
}


/*DIVS ESPECIALES*/

div.error {
	color:#F00; 
	font-size: 80%;
}

div.ok  {
	color: #060; 
	font-size: 80%;
}

/*LINKS*/

a.sistema {
	text-decoration: none;
	display:block; 
	padding: 4px;
	color:#333;
}

a.sistema:hover {
	background-color: #D86E3E; 
	color: #f8f9fa;
}

a.listados {
	color: inherit;
	text-decoration: none;
}

a.listados:hover {
	color: #D86E3E;
}

/*Enlaces de paginación */
div.enlaces_paginacion {
	margin: auto; 
	text-align: center; 
}

a.pactiva { 
	text-decoration: none; 
	display: inline-block; 
	font-weight: bold; 
	border: 1px solid #343a40; 
	padding: 3px; 
	color: #f8f9fa; 
	background: #343a40; 
	min-width: 30px; 
}
a.pactiva:hover {
	color:#d86e3e;
}

.pnumero {
	font-weight: bold; 
	border: 1px solid #343a40;
	padding: 3px; 
	display: inline-block; 
	min-width: 30px; 
	color: #f8f9fa; 
	background: #D86E3E;
}

/*	BOTONES */
.btn-primary {
	background-color: #D86E3E;
	border-color: #D86E3E;
}
.btn-primary:hover {
	background-color: #D86E3E;
	border-color: #D86E3E;
	transform: scaleY(1.1) ;
}

.btn-outline-primary {
	border-color: #D86E3E;
	color: #D86E3E;
}
.btn-outline-primary:hover {
	background-color: #D86E3E;
	border-color: #D86E3E;
}

/* --- TABLAS ---*/
.contenedor-tablas {
	width: 100%;
	overflow:auto;
}
/*  --- PÁGINA DE INICIO --- */

/* -- Grillas de inicio -- */
.grilla {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: left;
	gap: .50em;
	margin-bottom: .75em;
}

.recuadro-grande {
	width: 320px;
	padding: .75em;
	border-radius: 5px;
	box-shadow: #b0afbe 2px 2px 5px;
	text-align: left;
}

.recuadro {
	width: 180px;
	padding: .75em;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 5px;
	box-shadow: #b0afbe 2px 2px 5px;
	text-decoration: none;
	background-color: #343a40;
	color: #f8f9fa;
}

.recuadro:hover {
	color:#D86E3E;
	transform: scaleY(1.1) ;
}

/* formularios */
.contorno_formulario {
	max-width: 500px;
}

.contorno_login {
	max-width: 400px;
}