* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: arial;
    border-style: solid;
    border-width: 1px;
    border-color: black;
}

html,
body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(to bottom, rgb(186, 243, 186), rgb(45, 241, 45));
    border: none;
    min-width: 400px;
}

body::-webkit-scrollbar {
    display: none;
}


.title {
    font-family: arial;
    font-size: 45px;
    color: green;
    text-align: center;
    user-select: none;
    pointer-events: none;
    margin: none;
    padding-top: 20px;
    padding-bottom: 10px;
    border: none;
}

textarea:focus {
    outline: none;
}

.inputFormWrapper {
    border: none;
    background-color: white;
    width: 100%;
    height: calc(100% - 30px);
    position: relative;
    top: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: green;
}

.equationWrapper {
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none;
}

.equationWrapper.equation1 {
    position: absolute;
    top: 0px;
    width: 100%;
}

.equationWrapper.equation2 {
    position: absolute;
    top: 60px;
    width: 100%;
}

#a1,
#b1,
#c1,
#a2,
#b2,
#c2 {
    width: 60px;
    height: 30px;
    font-size: 20px;
    text-indent: 5px;
    border-width: 0px 0px 1px 0px;
}

#a1,
#b1,
#a2,
#b2 {
    text-align: right;
}


#c1,
#c2 {
    text-align: left;
}

#a1:focus,
#b1:focus,
#c1:focus,
#a2:focus,
#b2:focus,
#c2:focus {
    outline: none;
}

#a1,
#a2 {
    margin-left: 15px;
}

.equationLabel {
    width: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    background-color: white;
    border-width: 0px 0px 1px 0px;
}

.equationLabel span {
    border: none;
    font-family: arial;
}

#result {
    position: absolute;
    top: 30px;
    left: 0px;
    width: 100%;
    height: calc(100% - 430px);
    min-height: 50px;
    resize: none;
    font-family: monospace;
    text-align: left;
    font-size: 20px;
    padding: 5px;
    background-color: rgb(226, 250, 226);
    border-color: green;
    overflow-y: auto;
}

#result p {
    font-family: monospace;
}

#graph {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 400px;
    width: 100%;
    border: none;
    overflow-x: auto;
    background-color: white;
}

.InputOutputWrapper {
    margin: 0 auto;
    width: calc(50% - 40px);
    position: relative;
    border: none;
}

.InputOutputWrapper.input {
    height: 150px;
    min-width: 400px;
}

.InputOutputWrapper.output {
    min-width: 400px;
    height: 60%;
}


.convertButtonWrapper {
    width: calc(50% - 40px);
    min-width: 400px;
    margin: 0 auto;
    margin-top: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    border: none;
}

#convert {
    width: 100px;
    height: 25px;
    cursor: pointer;
    font-family: arial;
    font-size: 16px;
    background-color: rgb(85, 212, 35);
    color: white;
    border-color: green;
}

#convert:hover {
    background-color: rgb(116, 209, 79);
}

#convert:active {
    background-color: rgb(129, 189, 105);
}

.copyButtons {
    width: 100px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    cursor: pointer;
    border-bottom: none;
    border-color: green;
    color: white;
    background-color: rgb(66, 180, 66);
}

.copyButtons.button1 {
    border-bottom: 1px;
    border-width: 1px;
    border-style: solid;
    border-color: green;
}

.copyButtons:hover {
    background-color: rgb(85, 192, 85);
}

.copyButtons:active {
    background-color: rgb(94, 175, 94);
}

.resultStep1 span {
    border: none;
    font-family: arial;
}