html {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    padding: 1em;
}

.mainContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 2em;
    border-top: 1px dashed gray;
}

.menu {
    width: fit-content;
    margin-right: 3em;
    line-height: 1.5em;
    border-right: 1px dashed gray;
    padding-right: 2em;
}

.menu ul {
    margin-top: 0;
}

.content {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.timeFilter {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: none;
}

.timeFilter label {
    padding: 0.5em 1em;
    background-color: gainsboro;
    border: 1px solid gray;
    cursor: pointer;
    margin-right: 1em;
}

.timeFilter input {
    appearance: none;
}

.timeFilter input:checked + label {
    background-color: black;
    border: 1px solid black;
    color: white;
}

#symbolSelect {
    margin: 0 0 1em 0;
}

#symbolSelect select {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    padding: 0.5em;
}

.charts {
    padding: 2em 0 0 5em;
}

#table {
    min-width: 511px;
}

#table table {
    width: 100%;
}

#table table thead tr th {
    font-weight: bolder;
    text-align: right;
    padding: 0.5em 1em;
}

#table table tbody tr td {
    text-align: right;
    padding: 0.5em 1em;
    margin: 1px;
    background-color: #efefef;
}

#myChart {
    /*  */
}

#loading {
    width: 80vw;
    height: 90vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    position: absolute;
    top: 8em;
    left: 14em;
    background-color: white;
}

#details {
    width: 100%;
    height: fit-content;
    max-height: 50vh;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
    margin-bottom: 2em;
    border: 1px solid gainsboro;
    padding: 2em;
    background: #efefef;
}

#details table {
    width: 100%;
    margin-top: 0.5em;
    margin-bottom: 1em;
}

#details table thead tr th {
    border-bottom: 1px solid gray;
    text-align: left;
    padding: 0.5em 1em 0.5em 0;
}

#details table tbody tr td {
    padding: 0.5em 1em 0.5em 0;
    border-bottom: 1px dotted gray;
}

#selector {
    display: none;
    margin: 1em 0;
}
