/* CSS Reset - Modern Reset similar to Tailwind CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove default margin and padding */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* Remove list styles */
ol,
ul {
    list-style: none;
}

/* Remove quote styles */
blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

/* Remove table border spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default button styles */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    border: none;
    background: none;
    outline: none;
}

/* Remove default button appearance */
button {
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

/* Remove default input styles */
input,
textarea {
    border: none;
    outline: none;
    background: transparent;
}

/* Remove default select styles */
select {
    border: none;
    outline: none;
    background: transparent;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default fieldset styles */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

/* Remove default legend styles */
legend {
    padding: 0;
}

/* Remove default form styles */
form {
    margin: 0;
    padding: 0;
}

/* Remove default hr styles */
hr {
    border: none;
    height: 1px;
    background-color: var(--color-bg-pallete-300);
    margin: 0;
}

/* Remove default details styles */
details {
    border: none;
}

/* Remove default summary styles */
summary {
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

/* Remove default dialog styles */
dialog {
    border: none;
    padding: 0;
    margin: 0;
}

/* Remove default meter styles */
meter {
    border: none;
    background: none;
}

/* Remove default progress styles */
progress {
    border: none;
    background: none;
}

/* Remove default textarea resize */
textarea {
    resize: none;
}

/* Remove default input autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* Remove default focus styles */
*:focus {
    outline: none;
}

/* Remove default selection styles */
*::selection {
    background: transparent;
}

/* Remove default drag styles */
* {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}