/* Minimal CSS Reset */

/* Remove default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure full height usage */
html, body {
    height: 100%;
}

/* Improve text rendering */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove list bullets */
ul, ol {
    list-style: none;
}

/* Remove default link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Make images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove button styling */
button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

/* Remove input styling */
input, textarea, select {
    font: inherit;
}

/* Remove fieldset styling */
fieldset {
    border: none;
}

/* Remove table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}