
        
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
            background-color: #f4f4f4;
            color: #333333;
        }
    

        header {
            background-color: #333333;
            color: white;
            text-align: center;
            padding: 20px;
        }
        

        header h1 {
            margin: 0;
            font-size: 3em;
        }

        .menu {
            width: 80%;
            margin: 20px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .menu h2 {
            text-align: center;
            font-size: 2em;
            margin-bottom: 30px;

        }
        .cart h2 {
            text-align: center;
            font-size: 2em;
            margin-bottom: 30px;

        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #dddddd;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .item-name {
            font-size: 1.5em;
            font-weight: bold;
        }
        .item-deal {
            font-size: 1.2em;
            color: #2ec92e;
        }

        .item-description {
            font-size: 1.1em;
            color: #555555;
        }

        .item-price {
            font-size: 1.3em;
            color: #e74c3c;
        }

        .item-description, .item-price {
            margin-top: 5px;
        }

        .menu-item:hover {
            background-color: #f9f9f9;
            cursor: pointer;
        }
.add-to-cart {
   padding: 10px 20px; background-color: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer;
}
        
.remove-button {
   padding: 5px 10px; margin-left: 15px; margin-top: 10px; background-color: #FF474C; color: white; border: none; border-radius: 5px; cursor: pointer;
}
.place-order {
   padding: 5px 10px; margin-left: 15px; margin-bottom: 50px; margin-top:10px; background-color: #39e75f; color: white; border: none; border-radius: 5px; cursor: pointer;
}
.payOnline {
   padding: 5px 10px; margin-left: 15px; margin-bottom: 50px; margin-top:10px; background-color: #ff9800 ; color: white; border: none; border-radius: 5px; cursor: pointer;
}
.footer {
    background-color: #e0e0e0; 
    color: #333333; 
    text-align: center; 
    padding: 10px; 
    font-size: 12px; 
    border-top: 1px solid #dddddd; 
    font-family: Arial, sans-serif; 

}

