:root {
    --highlightColor: #941114;
    --backgroundColor: #f0f0f0;
    --panelColor: #FFFFFF;
    --panelHightlight: var(--backgroundColor);
    --backgroundHightlight: #cccccc;
    --softTextColor: #402020;
    --textColor: #202121;
    --borderRadius: 10px;
}

* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--backgroundColor);
    color: #202121;
    height: 100vh;
}

main {
    overflow: auto;
    height: calc(100vh - 60px);
}


a {
    text-decoration: none;
}

h1 {
    font-size: 32px;
    margin-left: 15px;
    font-weight: normal;
}

h2 {
    font-size: 25px;
    font-weight: normal;
    color: var(--softTextColor);
}

.errorPage h2 {
    font-size: 50px;
    color: var(--softTextColor);
}

h3 {
    margin-bottom: 10px;
    color: var(--softTextColor);
    font-size: 0.8rem;
}

p {
    color: var(--textColor);
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--panelHightlight);
}

svg {
    width: 24px;
}

#hiddenStuff {
    display: none;
}

.hiddenStuff {
    display: none;
}

.show {
    display: block;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.centeredText {
    text-align: center;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

.horizontalScroll {
    line-height: 25px;
    max-width: 100%;
    text-wrap: nowrap;
    overflow: scroll;
}

.container {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 700px;
    background-color: var(--panelColor);
    border-radius: var(--borderRadius);
    box-sizing: border-box;
    filter: drop-shadow(1px 1px 1px #000000);

}

/* Create a custom scrollbar */
*::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    height: 5px; /* Width of the scrollbar */
}

*::-webkit-scrollbar-thumb {
    background-color: var(--panelHightlight); /* Color of the thumb */
    border-radius: 6px; /* Radius of the thumb */
    
}

main::-webkit-scrollbar-thumb {
    background-color: var(--backgroundHightlight); /* Color of the thumb */
    border-radius: 6px; /* Radius of the thumb */
    position: relative;
}

*::-webkit-scrollbar-track {
    background-color: transparent; /* Color of the track */
}

