body {
    font-family: Arial;
    background-color: rgb(19, 19, 19);
    /*margin: 0;*/
}

a {
    /*color: rgb(167, 124, 76);*/
    color: #3ea6ff;
}

h2 {
    color: white;
}

h3 {
    color: white;
}

#root {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#fileInput {
    /*background-color: white;*/
    border: rgb(125, 75, 60) dashed 4px;
    color: white;
    border-radius: 16px;
    flex-grow: 1;
    /*width: calc(100% - 48px);
    height: calc(auto - 40px);*/
    width: 100%;
    /*margin: 20px;*/
    text-align: center;
    box-sizing: border-box;
}

#fileInput::file-selector-button {
    visibility: hidden;
}

#fileInputScreen {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.button {
    width: 50%;
    max-width: 400px;
    height: 50px;
    border: 0;
    border-radius: 25px;
    color: white;
    background-color: rgb(125, 75, 60);
    margin: 5px 0;
}

#analyzeScreen {
    display: none;
    width: 800px;
    max-width: 100%;
    /*padding: 0 6px;*/
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.analyzePannel {
    /*background-color: rgb(221, 211, 199);*/
    display: flex;
    height: 100%;
    /*border-radius: 12.5px;*/
    box-shadow: 0 2px 0 0 rgb(64, 64, 64);
    padding: 12px 20px;
    width: 100%;
    flex-direction: column;
    margin: 5px;
    box-sizing: border-box;
}

.analyzePannel2 {
    background-color: rgb(45, 45, 45);
    display: flex;
    height: 100%;
    border-radius: 12.5px;
    /*box-shadow: 0 2px 0 0 rgb(64, 64, 64);*/
    padding: 12px 20px;
    width: 100%;
    flex-direction: column;
    margin: 5px;
    box-sizing: border-box;
}

p {
    margin: 5px 0;
    color: white;
}

.pannelButton {
    border: 0;
    color: white;
    background-color: rgb(125, 75, 60);
    padding: 10px;
    border-radius: 1000px;
    margin: 10px 0;
    max-width: 300px;
    width: 100%;
}

.commentContainer {
    /*background-color: white;*/
    padding: 12px 0px;
    margin: 4px 0;
    /*border-radius: 12px;*/
    /*box-shadow: 0 2px 0 0 rgb(145, 94, 35);*/
}

.commentContainer2 {
    background-color: rgb(45, 45, 45);
    padding: 16px 20px;
    margin: 4px 0;
    border-radius: 12px;
    /*box-shadow: 0 2px 0 0 rgb(145, 94, 35);*/
}

#timelineDate {
    border: 0;
    padding: 16px;
    border-radius: 4px;
    max-width: 350px;
    width: 100%;
    height: 10px;
    box-sizing: border-box;
    background-color: rgb(72, 72, 72);
    color: rgb(255, 255, 255);
    margin: 5px 0;
}

#fileInputWrapper {
    width: 80%;
    max-width: 600px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(45, 45, 45);
    border-radius: 25px;
    padding: 16px 16px 6px 16px;
    color: white;
}

.fileInputButton {
    width: 100%;
    height: 50px;
    border: 0;
    color: white;
    border-radius: 16px;
    background-color: rgb(125, 75, 60);
    margin: 10px 0 10px 0;
}

#howToUse p {
    margin: 12px 0;
}

label {
    color: white;
}

select {
    border: 0;
    padding: 0 16px;
    border-radius: 4px;
    width: 150px;
    height: 30px;
    box-sizing: border-box;
    background-color: rgb(45, 45, 45);
    color: rgb(255, 255, 255);
}
select::placeholder{
    color: white;
}

#backgroundImage{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -999;
    object-fit: cover;
    width: 100%;
    filter: blur(12px) brightness(25%);
    overflow: hidden;
    user-select: none;
}

#commentHoursTable{
    width: 80%;
    max-width: 500px;
    /*display: flex;*/
    display: none;
    flex-direction: row;
}
#commentHoursTable ol{
    list-style: none;
    padding: 0;
}

.graphHour{
    color: white;
    width: 50px;
    height: 16px;
    margin: 2px;
}
.graph{
    height: 16px;
    background-color: white;
    margin: 2px;
    color: black;
    border-radius: 0 4px 4px 0;
}