/* ================================================
   app.css — Global Base Styles
   Housing Information Management System
   Municipality of Pilar, Capiz
   ================================================ */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    color: #333;
}

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

img {
    display: block;
}

main {
    min-height: 60vh;
}

html {
    scroll-behavior: smooth;
}

#housing-counts,
#live-statistics,
#rules,
#history,
#units {
    scroll-margin-top: 100px;
}
