@import url('/static/css/colors.css');
@import url('/static/css/fonts.css');
@import url('/static/css/goback.css');

body {
    display: grid;
    color: white;
    font-family: sixtyfour;
    position: relative;
    justify-content: center;
    align-items: start;
    padding-top: 5%;
    background-color: var(--orange);
}

#cubednumber {
    background-image: url('/static/cuberoot.png');
    background-repeat: no-repeat;
    padding: 10px;
    padding-bottom: 6px;
    padding-left: 15px;
    text-align: right;
    max-width: 144px;
    height: 22px;
}

#widget {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: max-content;
}

#eq {
    padding-left: 10px;
    padding-right: 10px;
}

details {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}

details > div {
    max-width: 770px;
}

table {
    margin: auto;
    width: 70%;
}

td {
    padding: 5px;
    border: 1px solid #f4e4de;
    width: 50%;
}

#input_background {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 60px;
    background-image: url('/static/text_border.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

input[type="number"] {
    border: none;
    background-color: transparent;
    color: white;
    font-family: sixtyfour;
    font-size: large;
    width: 35px;
    list-style: none;
    appearance: textfield;
}

input[type="number"]:focus {
    border: none;
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

hr {
    border: none;
    height: 0;
    margin: 10px 0;
    padding: 0;
}

a {
    color: #fc68c1;
}