/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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

#crowd-img-container img {
    height: 100vh;
}

body {
    overflow-y: auto;
    font-family: "Inter", sans-serif;
}

.qt-table {
    max-height: 50vh;
    overflow-y: auto !important;
    background: white;
    table-layout: fixed;
    width: 100%;
}

.qt-table table {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    font-family: Inter, sans-serif;
    overflow-x: scroll;
}

.qt-table a {
    text-decoration: none;
    color: inherit;
}

.qt-table table tr > td:first-child {
    font-weight: 500;
}

.qt-table table td {
    color: rgba(32, 32, 48, 1);
    padding: 0px 4px;
    word-wrap: break-word;
    max-width: 328px;
}

.qt-table table td > p {
    margin: 2px auto;
    padding: 0px 4px;
}

.qt-table table tr:nth-child(even) {
    background: #eee;
}

.qt-table thead th {
    position: sticky;
    background-color: white;
    top: 0;
    font-size: 20px;
    font-weight: 450;
    text-align: left;
    padding: 4px 2px;
    border-bottom: 2px solid #222;
}

.qt-table tbody tr:hover {
    background-color: #eeecff;
}

.qt-table td {
    border-bottom: 1px solid rgba(169, 169, 174, 0.8);
    border-left: 1px solid rgba(200, 200, 225, 0.5);
    height: 48px;
    vertical-align: middle;
}

.qt-button {
    transition: all 0.3s ease;
}

.navlink {
    transition: all 0.3s ease;
}

.qt-button:hover {
    filter: brightness(120%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.navlink:hover {
    filter: brightness(120%);
    transform: translateY(1px);
    text-decoration: underline;
}

.button-info {
    background-color: lightblue;
    font-size: 12px;
    boreder: 0px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition:
        background-color 0.5s ease-in-out,
        box-shadow 0.25s ease-in-out;
    cursor: pointer;
}

.card:hover {
    background-color: #f0f0f0;
    /* Light gray */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

/**
 * loader spinner *
 */

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader:before,
.loader:after {
    content: "";
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}

.loader:after {
    box-shadow: 0 2px 0 #960f0a inset;
    animation: rotate 0.75s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
