/*
Theme Name:        Minimal Ussef
Theme URI:         https://github.com/ussef/minimal-ussef
Author:            Ussef
Author URI:        https://github.com/ussef
Description:       Una plantilla minimalista, ligera y ultra segura desarrollada desde VS Code.
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       minimal-ussef
*/

/* Reset básico y estilos mínimos para verificar que carga correctamente */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
}

.site-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

article {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

article:last-child {
    border-bottom: none;
}

h1, h2 {
    color: #111;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}