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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    /* font-family: inherit; */
    vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

body {
    line-height: 1;
    color: var(--color-black);
    background: var(--color-white);
}

a {
    color: var(--color-black);
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: """";
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-gray-dark);
    margin: 0;
    height: 100%;
    min-height: 100vh;
}

main {
    flex: 1;
}

.xls-icon {
    position: absolute;
    right: 0;
    display: block;
    border-left: 1px solid var(--color-alto);
    padding: 3px;
    width: 20px;
    height: 20px;
    background: url('/base/static/assets/icons/excel.svg') no-repeat center;
    background-size: 65%;
}


.download-btn {
    position: relative;
    background: none;
    padding: 0 0 0 10px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 28px;
    gap: 8px;
    border: 1px solid var(--color-alto);
    color: #333;
    border-radius: 4px;
    width: 140px;
    height: 26px;
}
