﻿/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

* {
    margin: 1px;
    padding: 1px;
    box-sizing: border-box;
    font-size: 1em;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

p {
    text-align: center;
}

div {
    margin: 1px auto;
}

input, .result {
    width: 70%;
    margin: auto 15px;
}

.result {
    border: 1px solid black;
}

.container {
    display: flex;
    flex-direction: column;
    min-width: 30%;
    max-width: 50%;
    margin: 2rem auto;
    border: 4px solid black;
}

.log {
    display: flex;
    flex-direction: row;
    width: 100%;
    font-weight: bold;
}

.label {
    width: 30%;
    text-align: center;
    border-right: 4px groove black;
}

.bar, .results {
    width: 100%;
}

.pBottom {
    border-bottom: 5px double black;
}

.clipboard {
    width: 100%;
}

textarea {
    width: 100%;
    height: 125px;
}