/*
Theme Name: MG-Authority-Engine
Theme URI: https://mgtechnologysolutions.com
Author: M&G Solutions
Description: A corporate-style WordPress theme for Trades with niche-specific content.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: mg-authority-engine
*/

/* IMPORTANTE: 
   El diseño principal lo maneja Tailwind CSS (cargado en functions.php).
   Aquí solo ponemos estilos básicos de reseteo.
*/

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #f9fafb; /* Light Gray */
    color: #111827; /* Dark Gray */
}

/* Scrollbar personalizada */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}