/* body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
} */

/* body {
    background: linear-gradient(
       to right,
       #FC5C7D,#6A82FB
    ); */

    header {
        background-color: background: rgb(2,0,36);
        background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);;
        color: white;
        text-align: center;
        padding: 15px;
    }
    
    .logo {
        font-size: 24px;
        font-weight: bold;
    }
    
    nav a {
        text-decoration: none;
        color: white;
        margin: 0 15px;
    }
    
    .text-content {
        margin-top: 20px;
    }
    
    .search-bar {
        background-color: #fff;
        padding: 10px;
        text-align: center;
    }
    
    input {
        width: 200px;
        padding: 8px;
        border: 1px solid #ccc;
    }
    
    button {
        padding: 8px 16px;
        cursor: pointer;
        background-color: background: rgb(2,0,36);
        background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);;
        color: white;
        border: none;
    }
    
    .menu-section {
        background-color: background: rgb(2,0,36);
        background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);;
        margin: 20px 0;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .section-heading {
        font-size: 24px;
        font-weight: bold;
        color: #fff;
    }
    
    .menu-item {
        border: 1px solid #ccc;
        border-radius: 8px;
        margin: 10px;
        padding: 10px;
        text-align: center;
        /* background-color: background: rgb(238,174,231);
        background: radial-gradient(circle, rgba(238,174,231,1) 48%, rgba(102,225,237,0.8268557422969187) 100%);; */
        background-color: #e3e7e8;
    }
    
    .menu-item img {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .add-to-cart-btn {
        padding: 8px 16px;
        cursor: pointer;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 4px;
    }
    
    .add-to-cart-btn:hover {
        background-color: #7145a0;
    }
    
    
    .cart-container {
        border: 1px solid #abdbee;
        border-radius: 8px;
        margin: 20px;
        padding: 20px;
        float: right; /* Align to the right */
    }
    
    .cart {
        float: right; /* Align to the right */
        width: 25%;
        padding: 20px;
        background-color:#FFECD6;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1;
    }
    
    .cart h2 {
        margin-bottom: 10px;
    }
    
    .cart-item {
        display: flex;
        margin-bottom: 10px;
    }
    
    .cart-item img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
        border-radius: 4px;
    }
    
    .cart-item-details {
        flex-grow: 1;
    }
    
    .cart-item-details p {
        margin: 0;
    }
    
    