#title1 {
    position:fixed;
    left: 50%;
    bottom: 50%;
    transform: translate3d(-50%,50%,0);
    font-size: 2vw;
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#ProductName {
    font-size: 1.25vw;
    height: 0.5vw;
    margin-left: 5px;
    color: white;
}

#Price {
    font-size: 1.5vw;
    width: 10%;
    margin-top: 18%;
    margin-left: 5px;
    color: white;
}

#AllOrdersContainer {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
}


.OrderPurchase {
    width: 12.5%;
    height: 12.5%;
    background-color: gray;
    border: 5px;
    border-color: black;
    border-radius: 1%;
}

#ButtonContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* Center items vertically */
    align-items: center;       /* Center items horizontally */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);  /* Center the container itself */
    width: 10%;
}

.APButtons {
    height: 7vh;
    width: 100%;
    margin: 5px 0;  /* spacing between buttons */
    border-radius: 5%;
}

.AdminOrderLabels {
    width: 100%;
    height: 20%;
    gap: 5px;
    font-size: 50%;
}

#OrderProduct {
    position: relative;
    left: 70%;
    top: -20%;
    width: 5vw;
    height: 2vw;
    margin-top: -10%;
    font-size: 1vw;
    background-color: blue;
    text-align: center;
    align-content: center;
    border-radius: 5%;
    border-width: 0px;
}

.OrderPageBody {
    background-color: rgb(20, 20, 20);
}

#OrderButton {
    position:relative;
    left: 50%;
    bottom: -50%;
    transform: translate(-50%, 50%);
    font-size: 1vw;
    border-radius: 10px;
    height: 2.5vw;
    width: 10vw;
}

#SuccessText {
    position: fixed;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%,50%);
    font-size: 1vw;
}

.Product {
    height: 7vw;
    width: 19vw;
    background:rgb(10, 10, 10);
    border-radius: 2%;
}

#ProductContainer {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    position: fixed;
    left: 50%;
    bottom: 50%;
    transform: translate3d(-50%,50%,0);
    height: 80vh;
    width: 80vw;
    align-content: flex-start;
    overflow: auto;
}