html, body {
    color: white;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}


body video {
    transition: filter 250ms linear;
}

body.loading video {
    filter: grayscale(1) brightness(0.25);
}

body.loading:before {
    content: "Getting Things Running...";
    color: white;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 30px;
    font-size: 2em;
    font-weight: bold;
    z-index: 100;
}

html, body, video, canvas {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

video, canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
}

body:after {
    content: "";
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 150px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

/* .button {
   background: rgb(3,89,70);
   color: aliceblue;
   font-weight: 400;
   font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   border-color: rgb(3,89,70);
   border-radius: 5px;
   border-style: solid;
   border-width: 2px;
   outline: invert;
   padding: 3%;
   appearance: none;
   
} */

.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
    -webkit-transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
    -ms-transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
    background-color: transparent;
    border-radius: 0.325rem;
    border: 0;
    box-shadow: inset 0 0 0 2px rgba(144, 144, 144, 0.25);
    color: #000000 !important;
    cursor: pointer;
    display: inline-block;
    font-family: "Raleway", Helvetica, sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    height: 3rem;
    letter-spacing: 0.175em;
    line-height: 3rem;
    padding: 0 2rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.title {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.6)
    /* Add additional styling as needed */
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#fps {
    position: fixed;
    bottom: 10px;
    left: 10px;
}

#fps:empty {
    display: none;
}

#fps:after {
    content: " fps";
}


/* RECEIPT */
#receipt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 80%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(46, 41, 41, 0.2);
    max-height: 350px; /* Adjust this value as needed */
    overflow-y: scroll; /* Enable vertical scrolling */
    z-index: 10;
}

#receiptListContainer {
    overflow-y: scroll; /* Enable vertical scrolling */
    max-height: 100%; /* Use the maximum available height */
}

#receipt h2 {
    margin-top: 0;
}

#receiptList {
    list-style: none;
    padding: 0;
}

#receiptList li {
    margin-bottom: 2.5px;
    padding: 2.5px 2.5px;
    border-radius: 5px;
    color:rgba(0, 0, 0)
}

#completeOrderBtn{ /* Adjust this value as needed */
    z-index: 100;
    background-color: #ff9a31; /* Button */
    box-shadow: none;
    color: #000000 !important;
    margin: .25rem;
    transition: transform 0.3s ease-in-out;
 }

#completeOrderBtn:hover {
        transform: scale(0.95);

}

#toggleCameraBtn{
    z-index: 100;
    margin: .25rem;
    transition: transform 0.3s ease-in-out;
}

#toggleCameraBtn:hover {
    transform: scale(0.95);
}

#background{
    background-image: url("images/BGWideDark.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}