/* layout.css */


/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #FCDFDB;
}


.left-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo img {
    width: 75px;
}

nav.menu ul {
    display: flex;
    list-style: none;
}

nav.menu ul li {
    margin-right: 20px;
}

nav.menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.auth a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
    /* gap: 24px; */
}

/*  FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #FCDFDB;
    margin-top: 40px;
}

/* Make page stretch so footer moves to bottom when content is short */
html, body {
    height: 100%;
}

.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* grows to push footer down */
}
