body {
    background: #eeeeee;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    margin-top: 3.4em;
    margin-bottom: 5em;
    /*overscroll-behavior-y: none;    /*prevent overscrol*/
    overflow-y: scroll;             /*always show scrollbar*/
}

.bar {
    background: #ff9100;
    position: fixed;                /*sticky bar*/
    top: 0;
    width: 100%;
    padding-left: 1em;
    border-bottom-style: solid;
    border-bottom-width: 0.1em;
    border-bottom-color: #ffa600;
}

.title {
    text-align: left;
    font-size: 2em;
    font-weight: bold;
}

.pizza_list {
    margin: auto;
}

.pizza_item {
    background: #ff9100;
    margin: 0 auto;
    margin-top: 0.6em;
    border-radius: 8px;
    font-size: larger;
    width: 90%;
    max-width: 600px;
    padding: 0.5em;
}

table {
    margin: 0.5em auto 0 auto;
}

th, td {
    padding: 0.4em;
}

td:nth-child(1) {
    text-align: right;
}

td:nth-child(2) {
    text-align: left;
}

.icon {
    text-align: right;
}

.button {
    border: none;
    border-radius: 4px;
    background-color: transparent;
    margin-top: 0.2em;
}

.button:hover {
    background-color: rgba(216, 216, 216, 0.9);
}

.privacy_notice {
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: small;
    padding-right: 1em;
    padding-left: 0.5em;
    background-color: #eeeeee;
}

.text {
    text-align: left;
    margin: 0 2em;
}

/* remove arrows in number input fields*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* remove arrows in number input fields*/
input[type=number] {
    -moz-appearance: textfield;
    text-align: right;
}

@media only screen and (max-width: 400px) {
    .wide {display: none;}
    .narrow {display: block;}
    input {width: 10em;}
}

@media only screen and (min-width: 400px) {
    .wide {display: block;}
    .narrow {display: none;}
}