body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.top-bar {
    background: #063a87;
    color: white;
    padding: 10px;
    text-align: center;
}
/*.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white; /* importante para que no se transparente */
/*}*/
.header-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid #ccc;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
}

.main-footer {
    background: #063a87;
    color: white;
    text-align: center;
    padding: 20px;
}
.layout {
    display: flex;
}
.sidebar1 {
    width: 220px;
    background: #0090d5;
    height: 100vh;
    padding: 15px;
    color: white;
}
/* MENÚ IZQUIERDO */
.sidebar {
    width: 220px;
    background: #0090d5;
    min-height: 100vh;
    transition: all 0.3s ease;
	transform: translateX(0);

}

/* CONTENIDO */
.contenido {
    flex: 1;
    padding: 20px;
    background: #f5f5f5;
}

/* CUANDO SE OCULTA EL MENÚ */
.sidebar.oculto {
    margin-left: -220px;
	transform: translateX(-100%);
}
.btn-menu {
    background: #0090d5;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    margin-right: 10px;
	/*position: fixed;
    top: 133px;
    left: 0px;
    z-index: 999;*/
	position:absolute;
	 
    /*position: sticky;
	top: 133px;*/
    z-index: 10;
}
.flecha {
    float: right;
    transition: transform 0.3s ease;
}

/* cuando está abierto */
.flecha.abierta {
    transform: rotate(180deg);
}
.menu-principal {
    list-style: none;
    padding: 0;
}

.menu-principal li {
    margin-bottom: 10px;
}

.menu-principal a {
    color: white;
    text-decoration: none;
}

.menu-titulo {
    cursor: pointer;
    display: block;
    font-weight: bold;
    padding: 5px;
}
.menu-principal a,
.menu-titulo {
    color: #FFF !important; /* azul */
}

.sidebar .menu-principal a:hover,
.sidebar .menu-titulo:hover,
.sidebar .submenu li a:hover {
    color: #063a87 !important;
}
.submenu {
    display: none;
    padding-left: 15px;
}

.submenu li {
    margin: 5px 0;
}
