body {
    margin: 0;
    font-family: system-ui;
    background-color: #f5f5f5;
}
.nav-bar{
    height: 125px;
}
.links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 250px;
}
.left-side{
    display: flex;
    align-items: center;
}
.menu {
    margin-left: 20px;
    color: #ffc107;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
}
.menu:hover {
    color: #ff9800;
}
.logo {
    width: 85px;
    height: 85px;
    top: 35px;
}
.shop-list h2 {
    padding-left: 180px;
    font-size: 45px;
}
.right-side {
    width: 550px;
    display: flex;
    justify-content: end;
    gap: 25px;
    align-items: center;
}
.search input {
    width: 75px;
    float: left;
    padding: 10px;
    border: 1px solid #888888;
    border-radius: 5px 0 0 5px;
    font-size: 15px;
}
.search button {
    float: left;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #888888;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
.shopping {
    font-size: 35px;
    color: #ffc107;
}
.log-in {
    color: #ffc107;
    text-decoration: none;
    font-size: 35px;
}
.log-in:hover {
    color: #ff9800;
}
.font-family {
    font-family: system-ui;
}
footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f7d867;
}
footer p {
    padding: 30px 0px;
    margin: 0 250px;
}
.footer-icons {
    margin-right: 250px;
}
.footer-icons a {
    margin-left: 10px;
    padding: 10px;
    font-size: 15px;
    width: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    border: 2px solid black;
    color: black;
}
.footer-icons a:hover {
    border: 2px solid #ff9800;
    color: #ff9800;
}
.shop-selected {
    color: black;
    border-bottom: 2px solid black;
}
.both-screens{
    margin: 100px 250px;
    display: flex;
    gap: 45px;
}
.left-screen{
    height: 100%;
}
.row {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: #b1b1b1 1px solid;
    padding-bottom: 50px;
    padding-top: 50px;
}
.row img {
    width: 20%;
    padding: 15px;
    box-shadow: 1px 0px 7px 0px #b1b1b1;
    border-radius: 3px;
}
.details{
    width: 100%;
    display: flex;
    margin-left: 45px;
    gap: 55px;
    align-items: baseline;
}
.dish-name{
    width: 100%;
    max-width: 300px;
    font-size: 35px;
}
#order-input{
    max-width: 100px;
    width: 100%;
    height: 60px;
}
#order-input button {
    padding: 5px 10px;
    background-color: #F6AE2D;
    border-radius: 3px;
    cursor: pointer;
    border-color: #F6AE2D;
}
button:hover{
    background-color: #ff9800;
    color: white;
}
#order-input input{
    width: 20px;
    height: 23px;
    text-align: center;
}
.price{
    width: 100%;
    max-width: 95px;
    font-size: 20px;
    font-weight: normal;
}
p{
    font-size: 25px;
}
.delete{
    padding: 5px 10px;
    border-radius: 3px;
}
.right-screen{
    display: flex;
    flex-direction: column;
}
.payment-detail {
    background-color: #ff9800;
    padding: 20px 30px 50px 30px;
    border-radius: 3px;
    flex-direction: column;
}
.order-total{
    letter-spacing: 2px;
}
.order-total h2, h3 {
    color: white;
}
.notes-for-order p {
    color: white;
}
#note-section{
    display: block;
    overflow: hidden;
    width: 1000px;
    min-height: 100px;
}
textarea {
    width: 100%;
    min-width: 315px;
    max-width: 315px;
    min-height: 130px;
}
.order-action {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.submit-button{
    background-color: white;
    border: none;
    border-radius: 3px;
    padding: 10px;
}
.submit-button:hover{
    color: #373534;
    background-color: #fdcc72;
}
.message{
    color: #373534;
    text-align: center;
    font-size: 30px;
} 

/* Modal Box */
#modal-box {
    background-color: #b1b1b1c6;
    display: none;
    z-index: 1;
    width: 100%;
    height: 100vh;
    position: fixed;
    overflow: auto;
    padding-top: 170px;
}
.modal-box {
    background-color: #cfcfcf;
    display: flex;
    justify-content: center;
}
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    width: 45%;
    margin: 210px 400px 0;
    backdrop-filter: blur(10px);
}
.card-info {
    width: 450px;
    position: absolute;
    background: lightgray;
    padding: 30px;
    border-radius: 3px;
}
.card-name {
    display: flex;
    justify-content: space-between;
    padding-top: 0px;
}
.card-name h1{
    padding-top: 40px;
    margin: 0;
}
.card-name span {
    cursor: pointer;
}
label{
    display: inline-block;
    padding-block: 0.8rem;
    line-height: 1.6;
}
.form input{
    background-color: rgba(255,255,255,0.3);
    font-size: 70%;
    height: 35px;
    width: 100%;
    border: 1px;
    border-color: rgba(255,255,255,0.5);
    border-radius: 3px;
}
.Name{
    width: 90%;
}
.card-num {
    width: 100%;
}
.card-number {
    display: flex;
}
.CVV{
    margin-left: 40px;
}
.CVV-w{
    width: 70%;
}
.card-type{
    display: flex;
    align-items: end;
    gap: 10px;
}
.date {
    display: flex;
    gap: 20px;
}
.Expire-Date{
    background-color: rgba(255,255,255,0.3);
    height: 35px;
    width: 100px;
    border: 1px;
    border-color: rgba(255,255,255,0.5);
    border-radius: 3px;
    color: rgb(0, 0, 0);
}
.pay-img i {
    font-size: 35px;
}
.fa-close {
    padding: 5px;
}
.fa-close:hover {
    color: white;
    background-color: #888888;
    padding: 5px;
    border-radius: 3px;
}
.accept {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}
.accept button {
    background-color: #ffc107;
    font-size: 20px;
    border-radius: 3px;
    border-color: #ffc107;
    padding: 10px 25px;
}