body {
    background-color: #010409;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    color: #e4ebf1;
}

.mainPanel {
    display: flex;
    justify-content: center;
    height: 90%;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 15px;
}

.inputs-title {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 20%;
    gap: 15px;
}

.title {
    height: 20%;
    width: 100%;
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    line-height: 1.2;

}

.titleText {
    margin-left: 10%;
    margin-top: 8%;
    font-size: 35px;
    font-weight: 550;
}

.subTitle {
    font-size: 20px;
    font-weight: 500;
    color: #21c541;
}

.author {
    margin-left: 2px ;
    font-size:10px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 5px;
    opacity: 50%;
    font-style: italic;
}
  


.inputs {
    height: 100%;
    width: 100%;
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;

}

.input-title {
    margin-left: 10%;
    margin-top: 6%;
    font-size: 30px;
    font-weight: 505;
    margin-bottom: 2px;
}

.input-subtitle {
    margin-bottom: 50px;
    margin-left: 10%;
    font-size: 12px;
    font-weight: 400px;
    opacity: 80%;
}

.input-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}



input {
    background-color: #010409;
    border-radius: 5px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    height: 35px;
    color: #e4ebf1;
    text-indent: 10px;
    width: 250px;

}


input:focus {
    border: 2px solid #2f81f7;
    outline: none;
}

#labels {

    margin-bottom: 6px;

    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    opacity: 80%;
}


button {
    background-color: #238636;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    width: 70px;
    height: 30px;

}

button:hover {
    filter: brightness(120%);
    cursor: pointer;
}

button:active {
    filter: brightness(150%);
}

.solve {
    margin-top: 60px;
}

.outputs {
    height: 100%;
    width: 60%;
    background-color: #0d1117;
    border-radius: 9px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;

}

.output-title {
    margin-left: 5%;
    margin-top: 3%;
    font-size: 30px;
    font-weight: 505;
}

.table {
    height: 57%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
}

.lineGraph {
  height: auto;
  width: 90%;
    border-radius: 6px;
    border: 0.1px solid rgba(254, 254, 254, 0.2);
    
}

#myLineChart {
    height: 450px !important;
}

.quote{
  opacity: 60%;
  margin-top: 10px;
    margin-left: 5%;
    font-size:15px;
    font-weight: 400;
}

.computations {
    display: flex;
    height: 25%;
    width: 100%;
    justify-content: center;
}

.compute-panel {
    display: flex;
    border-radius: 5px;
    border: 0.1px solid rgba(240, 248, 255, 0.2);
    box-sizing: border-box;
    margin-top: 10px;
    height: 90%;
    width: 90%;
    gap: 5%;

}

.compute-title {
    margin-left: 5%;
    font-size: 20px;
    font-weight: 505;

}

#dataOut {
    margin-top: 25px;
    margin-left: 30px;
    margin-right: 10px;
    width: 35%;
}

.statement {
    width: 40%;
    margin-top: 50px;
    margin-left: 25px;
    margin-right: 70px;
}