/* -------------------------------------
   base.css — Global Reset + Essentials
-------------------------------------- */

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

html, body {
    font-family: "Inter", sans-serif;
    background: #f5f7fa;
    height: 100%;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* Utility Spacing */
.mt-20 { margin-top: 20px; }
.mt-10 { margin-top: 10px; }
