* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.elementDiv {

}

#mainView {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

#leftSide {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: baseline;
}

#middle {
    display: flex;
    flex-direction: column;
    margin-inline: 50px;
    gap: 5px;

}

#rightSide {
    display: flex;
    flex-direction: column;
}

button {
    width: 50px;
    height: 50px;
    background-color: blue;
    text-align: center;
    color: white;
    box-shadow: 0px;
    border: 0;
    border-radius: 4px;
}

button:focus-within {
    outline: 3px solid rgb(128, 206, 255);
}


input {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding-left: 10px;
    border-radius: 5px;
    border: 1px solid rgb(167, 167, 167);

    height: 30px;
    width: 100%;
}

#history {
    resize: none;
    padding-top: 10px;
    padding-left: 10px;
    outline: 0;
    /*overflow: hidden;*/
    max-height: 100vh;
    border-radius: 0px 0px 5px 5px;
    border: 1px solid rgb(167, 167, 167);

}

body {
    display: flex;
    justify-content: center;
}

.elementHeader {
    display: flex;
    align-items: center;
    background-color: rgb(239, 239, 239);
    padding-left: 10px;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid rgb(167, 167, 167);

    border-bottom: 0px;
    height: 30px;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#result {
    display: flex;
    align-items: center;
    padding-left: 10px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    color: black;
    border-radius: 0px 0px 5px 5px;
    border: 1px solid rgb(167, 167, 167);
    width: 300px;
    height: 40px;
}