/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f9fc;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    width: 100%;
}

h1 {
    color: #81e781;
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

#PlaceOrder {
    background-color:#c5f7c5;
    border-radius: 10px;
    width: 30vh;
    height: 6vh;
    font-size: 1.8rem;
}

#PlaceOrder:hover{
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Each menu item */
.menu-item {
    background-color: #ddf6df;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-box {
    background-color: #f4f4f4; /* Light placeholder color */
    border-radius: 8px;
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item h2 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
}

.cartItem{
    background-color: #c5f7c5;
    width: 30vh;
}

th{
    font-size: 1.2rem;
}