/* Other page styling */
* {
    margin: 0;
    padding: 0;
}

body {
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    margin: 0;
    top: 0;
    left: 0;
    position: absolute;
}

h1{
    font-size: 3em;
    margin-top: 50px;
}


#chartContainer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

canvas {
    max-width: 600px;
    max-height: 600px;
}

.content {
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(45deg, rgb(26, 1, 117) 0%, rgba(225, 5, 34, 0) 70%) repeat scroll 0% 0%,
    linear-gradient(135deg, rgb(225, 5, 152) 10%, rgba(49, 5, 209, 0) 80%) repeat scroll 0% 0%,
    linear-gradient(225deg, hsla(179, 81%, 45%, 1) 10%, rgba(10, 219, 216, 0) 80%) repeat scroll 0% 0%,
    rgba(0, 0, 0, 0) linear-gradient(315deg, rgb(189, 5, 245) 100%, rgba(9, 245, 5, 0) 70%) repeat scroll 0% 0%;
    min-height: 100vh;
}

.slider-main {
    margin-top: 50px;
    position: relative;
    width: 500px;
    height: 100px;
    cursor: pointer;
    user-select: none;
}

.slider-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slider-grid>div {
    width: 100%;
    font-size: 2.5em;
    z-index: 2;
}

.slider-slider {
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    top: 0;
    transition: all 0.5s ease;
    border-top-right-radius: 0px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 15px;
    z-index: 1;
}

.slider-right {
    transform: translate(100%, 0);
    border-top-right-radius: 15px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 0px;
}

.graph-wrapper{
    margin-bottom: 40px;
}

.graph-wrapper>canvas{
    margin-top: 40px;
}

/* hide the default file upload button */
input[type="file"] {
    display: none;
}

/* style the label which will be our custom file upload button */
label, #printButton {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    width: 500px;
    height: 100px;
    line-height: 100px;  /* this will center your text vertically */
    text-align: center;
    font-size: 2.5em;
    border-radius: 15px;
    cursor: pointer;
}

#printButton{
    display: none;
    margin-bottom: 50px;
}