/* reset.css */

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset,
legend {
    margin: 0;
    padding: 0;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove default border */
fieldset, img {
    border: 0;
}

/* Remove default background */
body {
    background: none;
}

/* Remove default font styles */
body, button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1;
    color: inherit;
}

/* Remove default table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove quotes from blockquote and q */
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

/* Remove outline on focused elements (optional, accessibility warning) */
/* :focus {
    outline: none;
} */

/* Remove default button styles */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Remove default appearance for form elements */
input, textarea, select, button {
    appearance: none;
    border-radius: 0;
    border: none;
    background: none;
    box-shadow: none;
}

/* Set HTML5 display roles */
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
    display: block;
} 