@font-face {
	font-family: 'roboto_medium_regular';
	src: url('../webfonts/roboto-medium-webfont.woff2') format('woff2'),
		url('../webfonts/roboto-medium-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'roboto_condensed_light';
	src: url('../webfonts/robotocondensed-light-webfont.woff2') format('woff2'),
		url('../webfonts/robotocondensed-light-webfont.woff') format('woff'),
		url('../webfonts/robotocondensed-light-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'roboto_condensed_regular';
	src: url('../webfonts/robotocondensed-regular-webfont.woff2') format('woff2'),
		url('../webfonts/robotocondensed-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

:root {
	--color-one: #F5F5F5;
	--color-two: #24292E;
	--color-three: #EC5252;
	--color-four: #453bd3;
	/*--color-three: #0366D6;*/

	--form-color: #14111A;

	--accent-color: #253556;
	/*--accent-color: #455A64;*/
	--border-color: #D8D8D8;
}

body,
html {
	font-family: 'roboto_condensed_light';
	width: 100vw;
	height: 100vh;
	background-color: var(--color-one);
	color: #333;
	font-size: 16px;
}

.full-box {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
}

.form-neon {
	border: 1px solid var(--border-color);
	background-color: #FFF;
	padding: 15px;
	border-radius: 3px;
}

/* Si quieres estilos específicos para labels dentro de un formulario */
.form-neon label {
	color: var(--color-two);
	/* Cambia el color según la necesidad del formulario */
	/* font-weight: bold; /* Ejemplo de cómo puedes cambiar el grosor del texto */
}

/*----------  Page headers styles  ----------*/
.page-header {
	padding: 30px 20px 60px 20px;
}

.page-header> :nth-child(1) {
	padding-bottom: 7px;
}

.page-header> :nth-child(2) {
	font-size: 18px;
}

/*----------  Page nav tabs  ----------*/

.page-nav-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.page-nav-tabs li,
.page-nav-tabs li a {
	height: 40px;
	line-height: 40px;
}

.page-nav-tabs li {
	margin: 5px 0px;
}

.page-nav-tabs li a {
	color: var(--accent-color);
	font-size: 15px;
	min-width: 200px;
	width: auto;
	display: block;
	text-align: center;
	user-select: none;
	transition: all .2s ease-in-out;
	border-bottom: 2px solid transparent;
}

.page-nav-tabs li a.active {
	color: var(--color-three);
	cursor: none;
	pointer-events: none;
}

.page-nav-tabs li a.select {
	color: var(--color-four);
}

.page-nav-tabs li a:hover {
	text-decoration: none;
	color: #333;
	border-bottom: 2px solid #333;
}

/*----------  Edit bootstrap styles  ----------*/
.form-control[readonly] {
	background-color: transparent;
}

.form-control:focus,
.form-control:active {
	outline: none;
	box-shadow: none;
	border: none;
}

.form-control-file:active,
.form-control-file:focus {
	outline: none;
}

.form-control:label,
.form-control:active {
	outline: none;
	box-shadow: none;
	border: none;
}

.table .btn {
	margin-bottom: 0;
}

.table thead th {
	color: #FFF;
}

.table tbody tr {
	color: #333;
	transition: all .2s ease-in-out;
}

.table-dark,
.table {
	background-color: #fff;
}

.table-dark {
	border: 1px solid var(--accent-color);
}

.table-dark thead tr {
	background-color: var(--accent-color);
}

.table-dark td,
.table-dark thead th,
.table-dark th {
	border: none;
}

.table-dark tr:hover {
	color: var(--color-three);
	background-image: linear-gradient(to right, transparent, rgba(124, 100, 112, .2) 85%, transparent);
}

.page-link {
	transition: all .2s ease-in-out;
}

.page-link:hover,
.page-link.active {
	background-color: var(--color-three);
	color: #FFF;
}

table form {
	margin-bottom: 0;
}

/*----------  Text Styles  ----------*/
.roboto-medium {
	font-family: 'roboto_medium_regular';
}

.roboto-condensed-light {
	font-family: 'roboto_condensed_light';
}

.roboto-condensed-regular {
	font-family: 'roboto_condensed_regular';
}

/*----------  Page 404 styles  ----------*/
.container-404 {
	background: #000428;
	background: linear-gradient(to right, #004e92, #000428);
	color: #fff;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*----------  login Styles  ----------*/
.login-container {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0575E6;
	background: -webkit-linear-gradient(to right, #02d602, #0575E6);
	background: linear-gradient(to right, #1c0972, #0575E6);

}

.login-content {
	width: 95%;
	max-width: 320px;
	height: auto;
	border: 1px solid var(--border-color);
	background-color: #FFF;
	border-radius: 4px;
	padding: 15px;
	color: var(--accent-color);
}

.btn-login {
	width: 90%;
	padding: 10px 0;
	display: block;
	margin: 0 auto;
	border-radius: 3px;
	margin-top: 30px;
	background-color: transparent;
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
	transition: all .2s ease-out;
}

.btn-login:hover {
	background-color: var(--color-three);
	border: 1px solid var(--color-three);
	text-decoration: none;
	color: #fff;
}

.btn-login:active,
.btn-login:focus {
	outline: none;
}

/*----------  Page layout Styles  ----------*/
.main-container {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.page-content,
.nav-lateral {
	height: 100%;
	overflow: auto;
}

.page-content {
	position: relative;
	padding-left: 300px;
	transition: all .2s ease-in-out;
	padding-bottom: 20px;
}

/*  Nav Lateral */
.nav-lateral {
	width: 300px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all .2s ease-in-out;
	background-image: url('../assets/img/nav-font.jpg');
	background-position: center center;
	background-size: cover;
}

.nav-lateral-bg {
	display: none;
}

.nav-lateral-content {
	max-width: 300px;
	height: 100%;
	background-color: rgba(36, 41, 46, .8);
}

.nav-lateral-bar {
	height: 3px;
	background-color: var(--color-three);
}

.nav-lateral-avatar {
	padding: 40px 0;
}

.nav-lateral-avatar i {
	display: none;
}

.nav-lateral-avatar img {
	width: 50%;
	margin: 0 auto;
	display: block;
	border: 4px solid #FFF;
	border-radius: 100%;
}

.nav-lateral-avatar figcaption {
	margin-top: 20px;
	color: #FFF;
}

.nav-lateral-menu {
	height: auto;
}

.nav-lateral-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-lateral-menu ul li {
	width: 100%;
	height: auto;
}

.nav-lateral-menu ul li a {
	display: block;
	width: 100%;
	height: 45px;
	line-height: 45px;
	text-decoration: none;
	color: #FFF;
	font-size: 15px;
	box-sizing: border-box;
	padding-left: 20px;
	transition: all .2s ease-in-out;
}

.nav-lateral-menu ul li a.active {
	color: #FFF;
	background-color: var(--color-three);
}

.nav-lateral-menu ul li a:hover {
	color: #fff;
	background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .1) 50%, transparent);
}

.nav-lateral-menu ul li ul {
	display: none;
	border: 1px solid var(--color-three);
	background: rgba(20, 30, 48, .5);
}

.nav-lateral-menu ul li ul a {
	padding-left: 45px;
	
}

.show-nav-lateral-submenu {
	display: block !important;
}

.nav-lateral-menu .fa-chevron-down,
.nav-lateral-menu .fa-chevron-up {
	float: right;
	height: 45px;
	line-height: 45px;
	margin-right: 7px;
	transition: all .2s ease-in-out;
}

.nav-lateral-menu ul li ul li .circle-bullet {
    display: inline-block;
    width: 10px; /* Tamaño del círculo */
    height: 10px; /* Tamaño del círculo */
    background-color: #ffffff; /* Color del círculo */
    border-radius: 50%; /* Hace que el elemento sea circular */
    margin-right: 10px; /* Espacio entre el círculo y el texto */
    vertical-align: middle; /* Alinea verticalmente con el texto */
}

/*  Page content */
/* Estilos para hacer la barra de navegación fija */


.navbar-info {

	height: 50px;
	border-bottom: 1px solid var(--border-color);
	text-align: right;
	padding-right: 10px;

}

.navbar-info a{
	color: var(--accent-color);
	height: 50px;
	min-width: 40px;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	transition: all .2s ease-out;
	user-select: none;
	margin-top: 1px;
}


.navbar-info a:hover {
	color: var(--color-three);
	background-image: radial-gradient(circle, rgba(250, 30, 78, .1), transparent 80%);
}

.navbar-info a:active,
.navbar-info a:focus {
	outline: none;
}

.badge-notif2 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.25em 0.4em;
}



/*----------  Home Styles  ----------*/
.tile-container {
	text-align: center;
	padding: 20px 25px;
}

.tile {
	height: 200px;
	width: 200px;
	margin: 10px;
	display: inline-block;
	text-decoration: none;
	color: var(--accent-color);
	border: 1px solid var(--border-color);
	border-radius: 3px;
	user-select: none;
	transition: all .2s ease-in-out;
	background-color: #FFF;
}

.tile:hover {
	text-decoration: none;
	border-color: var(--color-three);
}

.tile:focus,
.tile:active {
	outline: none;
}

.tile-tittle {
	margin: 0;
	width: 100%;
	padding: 0;
	height: 40px;
	line-height: 40px;
	box-sizing: border-box;
	text-transform: uppercase;
	border-bottom: 1px solid var(--border-color);
	transition: all .2s ease-in-out;
	font-family: 'roboto_medium_regular';
}

.tile:hover .tile-tittle {
	color: #FFF;
	border-color: var(--color-three);
	background-color: var(--color-three);
}

.tile-icon {
	width: 100%;
	height: 160px;
	box-sizing: border-box;
	padding-top: 22px;
}

.tile-icon>i {
	font-size: 80px;
}

.tile-icon>p {
	font-family: 'roboto_medium_regular';
	height: 35px;
	line-height: 35px;
}

.tile:hover .tile-icon>i,
.tile:hover .tile-icon>p {
	color: var(--color-three);
}


/*----------  Breakpoints  ----------*/
@media (max-width: 767px) {
	.nav-lateral {
		width: 100%;
		overflow: hidden;
		display: none;
		background-image: none;
	}

	.nav-lateral.active {
		display: block;
		z-index: 9999;
	}

	.nav-lateral-bg {
		width: 100%;
		height: 100%;
		background-color: rgba(3, 3, 3, .4);
		position: relative;
		display: block;
		z-index: 2;
	}

	.nav-lateral-content {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 3;
		transform: translateX(-400px);
		transition: all .3s ease-in-out;
		background-color: var(--color-two);
	}

	.nav-lateral.active .nav-lateral-content {
		transform: translateX(0);
	}

	.nav-lateral-avatar i {
		height: 50px;
		width: 50px;
		line-height: 50px;
		color: #FFF;
		cursor: pointer;
		font-size: 25px;
		position: absolute;
		top: 5px;
		right: 0;
		text-align: center;
		display: block;
		transition: all .2s ease-out;
	}

	.nav-lateral-avatar i:hover {
		color: var(--color-three);
	}

	.page-content {
		padding-left: 0;
	}
}


/*  Bootstrap breakpoints */
@media (min-width: 576px) {}

@media (min-width: 768px) {
	.nav-lateral.active {
		transform: translateX(-400px);
	}

	.page-content.active {
		padding-left: 0;
	}
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

.custom-progress {
	height: 20px;
	/* Ajusta este valor a la altura deseada */
}

.low-progress {
	background-color: green;
}

.medium-progress {
	background-color: rgb(0, 4, 255);
}

.high-progress {
	background-color: red;
}

/*----------  container grafico  ----------*/
.card-ton {
	margin-top: 20px;
}

.chart-container {
	position: relative;
	height: 400px;
	/* Ajusta esta altura según tus necesidades */
	width: 100%;
}

canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

/*----------  Keyframes  ----------*/

/* Activity */
.dashboard .activity {
	font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
	color: #888;
	position: relative;
	flex-shrink: 0;
	flex-grow: 0;
	min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
	content: "";
	position: absolute;
	right: -11px;
	width: 4px;
	top: 0;
	bottom: 0;
	background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
	margin-top: 3px;
	z-index: 1;
	font-size: 11px;
	line-height: 0;
	border-radius: 50%;
	flex-shrink: 0;
	border: 3px solid #fff;
	flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
	padding-left: 10px;
	padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
	top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
	padding-bottom: 0;
}
/* Estilo base para los enlaces del menú */
.nav-pills .nav-link {
    padding: 0.5rem 1rem; /* Ajustar el espaciado interno según sea necesario */
    font-size: 14px; /* Tamaño de fuente */
    text-align: center; /* Alineación centrada del texto */
    border: 1px solid #ccc; /* Borde sólido de 1px con color gris claro */
    border-radius: 5px; /* Borde redondeado */
    margin-bottom: 5px; /* Espacio entre cada enlace */
    display: inline-block; /* Convertir enlaces en elementos de bloque */
    box-sizing: border-box; /* Incluir padding y borde en el ancho total */
    white-space: nowrap; /* Evitar el salto de línea en textos largos */
    overflow: hidden; /* Ocultar contenido extra que sobresale */
    text-overflow: ellipsis; /* Mostrar puntos suspensivos si el texto es demasiado largo */
	color: #000000; /* Cambia el color de las letras */
}

/* Media query para dispositivos móviles */
@media (max-width: 767px) {
    .nav-pills .nav-link {
        width: 100%; /* Ancho del 100% en dispositivos móviles */
    }
}

/* Media query para pantallas de computadora */
@media (min-width: 768px) {
    .nav-pills .nav-link {
        width: 210px; /* Ancho de 250px en pantallas de computadora */
    }
}

/* Estilo para los enlaces activos */
.nav-pills .nav-link.active {
    background-color: #192b3d; /* Color de fondo para el enlace activo */
    color: #fff; /* Color de texto para el enlace activo */
    border-color: #021325; /* Color de borde para el enlace activo */
}

/*codigo gpt para que la imagen sea mas pequeña y el modal tambien */

.modal-dialog {
    max-width: 30%; /* Limita el ancho máximo del modal */
    margin: 1.75rem auto;
}

.modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modal-body img {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    width: auto;
    object-fit: contain; /* Mantiene la proporción de la imagen */
}

@media (max-width: 768px) {
    .modal-dialog {
        max-width: 90%; /* Ajusta el ancho máximo en pantallas pequeñas */
    }
}


/* Personaliza la barra de desplazamiento */
.nav-lateral-content::-webkit-scrollbar {
    width: 8px; /* Ancho de la barra */
}

.nav-lateral-content::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color de fondo */
}

.nav-lateral-content::-webkit-scrollbar-thumb {
    background: #888; /* Color de la barra */
    border-radius: 5px; /* Bordes redondeados */
}

.nav-lateral-content::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color al pasar el mouse */
}
/*
form.FormularioAjax { 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-height: 670px;
    background: #ffffff;
    padding: 5px;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0; 
}
*/


/* Contenedor nueva planilla*/
.contenedor {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: repeat(3, auto); /* Filas con altura automática */
    grid-gap: 5px; /* Reduce el espacio entre elementos */
    width: 100%;
    max-height: 670px; /* Altura máxima para evitar scroll vertical */
    background: #ffffff;
    padding: 5px; /* Reduce el padding */
    box-sizing: border-box;
    grid-template-areas:
        "datos1 datos2 datos3"
        "datos4 datos6 datos6"
        "datos5 datos6 datos6";
    overflow: hidden; /* Oculta el contenido que se desborda */
}




.datos {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px; /* Reduce el padding */
    box-sizing: border-box;
    overflow: hidden;
}

.datos > div {
    display: flex;
    align-items: center;
    margin-bottom: 2px; /* Reduce el espacio entre label-input */
	
}

.datos label {
	
    width: 90px; /* Reduce el ancho de las labels */
    font-size: 0.8em; /* Reduce el tamaño de la fuente */
    text-align: left;
    margin-right: 0px; /* Reduce el espacio entre label e input */
    white-space: nowrap; /* Evita que el texto de la label se corte */
    overflow: hidden;
    text-overflow: ellipsis; /* Agrega puntos suspensivos si el texto se desborda */
}

.datos input {
    flex-grow: 1;
	padding: 0px; /* Reduce el padding del input */
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 0.9em; /* Reduce el tamaño de la fuente */
	
}

/* Posiciones específicas en la cuadrícula */
.datos1 {
    grid-column: 1;
    grid-row: 1;   
}
.datos1 select {
    width: 220px; /* Ajusta este valor según tus necesidades */
    box-sizing: border-box; /* Incluye el padding y el border en el ancho */
}
.datos2 {
    grid-column: 2;
    grid-row: 1;
}

.datos3 {
    grid-column: 3;
    grid-row: 1;
}

.datos4 {
    grid-column: 1;
    grid-row: 2;
}

.datos5 {
    grid-column: 1;
    grid-row: 3;
}

.datos6 {
    grid-column: 2 / span 2; /* Ocupa 2 columnas */
    grid-row: 2 / span 2; /* Ocupa 2 filas */
}

/* Estilos de la tabla (sin cambios significativos) */
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

table th, table td {
	font-size: 0.9em;
    padding: 3px;
    border: 1px solid #ddd;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    word-wrap: break-word;
}

table input {
    width: calc(100% - 10px);
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    margin: 0;
}

/* Media query para pantallas más pequeñas (opcional) */
@media (max-width: 768px) {
    .contenedor {
        grid-template-columns: 1fr; /* Una sola columna en pantallas pequeñas */
        grid-template-rows: auto; /* Filas automáticas */
    }

    .datos1, .datos2, .datos3, .datos4, .datos5, .datos6 {
        grid-column: 1;
        grid-row: auto;
    }
}


.datos input, /* Selector para TODOS los inputs dentro de .datos */
.datos select { /* Selector para los selects dentro de .datos */
    flex-grow: 1;
    padding: 3px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 0.8em;
    height: auto;
}

.datos input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 1em;
    padding-right: 25px;
    text-align: center;
}

.datos input:focus,
.datos select:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}


/* Contenedor nueva recaudacion*/
.contenedor2 {
    display: grid;
    grid-template-columns: 32% 32% 32%;
	grid-template-rows: repeat(3, auto); /* Filas con altura automática */
    grid-gap: 5px; /* Reduce el espacio entre elementos */
    width: 100%;
    max-height: 670px; /* Altura máxima para evitar scroll vertical */
    background: #ffffff;
    padding: 5px; /* Reduce el padding */
    box-sizing: border-box;
    grid-template-areas:
        "datos1_2 datos2_2 datos3_2"
        "datos4_2 datos5_2 datos5_2"
        "datos6_2 datos7_2 datos8_2";
    overflow: hidden; /* Oculta el contenido que se desborda */
}


.datos2 {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px; /* Reduce el padding */
    box-sizing: border-box;
    overflow: hidden;
}

.datos2 > div {
    display: flex;
    align-items: center;
    margin-bottom: 2px; /* Reduce el espacio entre label-input */
}

.datos2 label {
    width: 90px; /* Reduce el ancho de las labels */
    font-size: 0.8em; /* Reduce el tamaño de la fuente */
    text-align: right;
    margin-right: 8px; /* Reduce el espacio entre label e input */
    white-space: nowrap; /* Evita que el texto de la label se corte */
    overflow: hidden;
    text-overflow: ellipsis; /* Agrega puntos suspensivos si el texto se desborda */
}

.datos2 input {
    flex-grow: 1;
	padding: 3px; /* Reduce el padding del input */
    box-sizing: border-box;
    border: 1px solid #ccc;
    font-size: 0.8em; /* Reduce el tamaño de la fuente */
}

/* ... (resto del código y media query) ... */

/* Posiciones específicas en la cuadrícula */
.datos1_2 {
    grid-column: 1;
    grid-row: 1;
}

.datos2_2 {
    grid-column: 2;
    grid-row: 1;
}

.datos3_2 {
    grid-column: 3;
    grid-row: 1;
}

.datos4_2 {
    grid-column: 1;
    grid-row: 2;
}

.datos5_2 {
	grid-column: 2 / span 2; /* Ocupa 2 columnas */
    grid-row: 2; /* Ocupa 2 filas */
}

.datos6_2 {
    grid-column: 1; 
    grid-row: 3; 
}
.datos7_2 {
    grid-column: 2;
    grid-row: 3; 
}
.datos8_2 {
    grid-column: 3; 
    grid-row: 3; 
}


#rec_detalle_egreso_diesel {
    resize: none; /* Evita que el usuario cambie el tamaño del textarea */
    text-align: left; /* Alinea el texto a la izquierda */
    vertical-align: top; /* Asegura la alineación superior (no siempre es necesario) */
    overflow: auto; /* Permite que aparezca un scroll si el contenido excede el área visible */
    padding: 5px; /* Opcional: añade un poco de espacio interno para una mejor apariencia */
    box-sizing: border-box; /* Asegura que el padding no afecte el tamaño total */
}

input {
    text-align: center; /* Alinea el texto a la derecha */
    font-size: 16px; /* Ajusta el tamaño de la fuente */
    padding: 5px; /* Agrega un poco de espacio interno para mejor apariencia */
    box-sizing: border-box; /* Asegura que el padding no altere el tamaño total del input */
}

.full-box.page-header {
    max-width: 1200px; /* Ajusta el ancho máximo según lo que necesites */
    margin: 0 auto; /* Centra el contenedor */
}