
/******************************************************************************************/
/******************************************************************************************/
/******************************** ESTILOS HEADER ******************************************/
/******************************************************************************************/
/******************************************************************************************/


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}


#logo{
    width:280px;
}


#info_usuario{
    flex: 1 1 auto; 
    text-align: center; 
    font-weight: bold; 
    font-size: 1.5em; 
    color:#0583c3;
}


#boton_logout {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    background-color: #0583c3;
    color: white;
    border: none;
} 

#boton_logout img {
    margin-left: 8px;
    width: 25px;
    height: 20px;
} 

#boton_logout:hover {
    background-color: orangered;
}



/* Responsividad */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: center;
        padding: 12px;
    }

    header #boton_logout{
        margin:15px;
    }

    #logo{
        width:230px;
    }

    #info_usuario{
        font-size: 1em; 
    }
}



/******************************************************************************************/
/******************************************************************************************/
/******************************** ESTILOS BODY ********************************************/
/******************************************************************************************/
/******************************************************************************************/


html, body {
    height: 100%;
    margin: 0;
}


/****************************** COLUMNAS  CENTRALES **************************************/

.columnas {
    padding: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
} 


#header_columna{
    background-color: #2980B9;
    color: white;
    width: 100%;
    text-align: center;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
} 


.enlaces {
    list-style-type: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    height: 100%;
} 


.enlaces li {
    border-bottom: 2px solid #eee;
    padding: 10px;
    text-align: center;
}

ul.enlaces li a {
    text-decoration: none;
    color: #2980B9;
}


ul.enlaces li a:hover {
    color: orangered;
}



@media (max-width: 768px) {
    .columnas {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}




/******************************************************************************************/
/******************************************************************************************/
/******************************** ESTILOS FOOTER ******************************************/
/******************************************************************************************/
/******************************************************************************************/


footer{
    padding-top: 100px; 
}


.logo-container {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-container img {
    object-fit: contain;
}


@media (max-width: 576px) {
    .logo-container {
        margin-bottom: 15px; 
    }
    footer .container {
        padding-left: 0;
        padding-right: 0;
    }
    footer .row {
        justify-content: center; 
    }
}



