/*
 # ########*###########################
 Autor: José Luis Rodriguez
 Mail: jrodriguez@bincodex.com
 Web: https://bincodex.com
 Fecha: 2026-03-23 10:12:25
 Archivo: structure.css
 Codificación: UTF-8
 Editado en: Kate 25.04.3
 ####################################
 */






/* Configuracion inicial */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--color-primario-dark) #f1f1f1;
	box-sizing: border-box; /* Mejor control de padding/width */
}

html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-size: 12px;
/* 	font-family: var(--fuente-principal); */
}

body {
    background-color: var(--bg-principal);
    font-family: var(--fuente-sistema);
    color: var(--texto-oscuro);
    -webkit-font-smoothing: antialiased;
}



/*Cargadores*/
#wait_sys {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(214, 214, 214, 0.63);
	z-index: 20;
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 2.5em;
	color: #7b7b7b;
	backdrop-filter: blur(5px);
}

#modl_sys {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(214, 214, 214, 0.63);
	z-index: 19;
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 2.5em;
	color: #7b7b7b;
	backdrop-filter: blur(5px);
}



/* Layout */
.main_system {
	border: 0px solid red;
	width: 100vw;
	height: 100vh;
	display: grid;
	min-height: calc( 100vh - 0px );
	grid-template-columns: 250px 5fr 1fr;
	grid-template-rows: 40px 1fr 40px;
	grid-template-areas:
		"header header  header "
		"aside  content content"
		"footer footer  footer ";
}

.header_system {
	grid-area: header;
	background: var(--color-panles);
}

.aside_system {
	grid-area: aside;
	background: var(--color-panles);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	grid-template-rows: 180px 1fr;
	padding: 20px 0px;
	position: relative;
}

.content_system {
	grid-area: content;
	background: #dcdcdc;
	white-space: nowrap;
	overflow: auto;
	padding: 10px;
	border: 12px solid #fff;
	box-sizing: border-box;
}

.footer_system {
	grid-area: footer;
	background: var(--color-panles);
}










