body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav {
    margin: 10px 0;
}

nav ul {
    list-style: none; 
    padding: 0;
}

nav li {
    display: inline-block; 
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

.site-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    width: 100%;
    margin-top: auto; /* This pushes the footer to the bottom */
}

/* Add or update these styles for better reading experience */
/* filepath: d:\projects\tecnocriollo-blog\assets\css\styles.css */

.post-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2em 1em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    line-height: 1.7;
    font-size: 1.1em;
}

/* Optional: add some spacing to the article itself */
article {
    margin-top: 2em;
    margin-bottom: 2em;
}

/* Limit image width inside post content */
.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5em auto;
    margin-bottom: 0.1em;
}

/* Mejorar el texto bajo las imágenes de los posts */
/* filepath: d:\projects\tecnocriollo-blog\assets\css\styles.css */

.post-content p.imagen-ayuda {
    text-align: center;
    font-size: 0.80em;
    color: #888;
    margin-top: 0.1em;
    margin-bottom: 2em;
    line-height: 1.2;
}