/* Reset CSS - A base reset for consistent styling across browsers */

/* Root settings */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

/* Global box-sizing rule */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Set a default body font, background, and color */
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background: #fff;
    color: #000;
    min-height: 100%;
}

/* Ensure images and media elements are responsive */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Reset heading styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    overflow-wrap: break-word;
}

/* Reset paragraph styles */
p {
    text-wrap: pretty;
}

/* Reset link styles */
a {
    text-decoration: none;
    color: inherit;
}

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

/* Reset form elements */
button, input, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

/* Ensure buttons remain interactive */
button {
    cursor: pointer;
}

/* Ensure table elements are properly formatted */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Prevent layout shift in frameworks using root elements */
#root, #_next {
    isolation: isolate;
}