/* Browser Reset & Normalization */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Remove default margins */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
}

/* Font smoothing for all browsers */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Fix button styling across browsers */
button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: transparent;
}

/* Fix input styling across browsers */
input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Remove focus outline but keep for keyboard users */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}