@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400,700;&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Lexend',sans-serif;
    font-size: 16px;
    line-height: 24px;
}
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.heading {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.heading h4 {
    display: inline-block;
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 20px;
    padding-bottom: 30px;
    position: relative;
}

.heading h4::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    background-color: #cd5b9a;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}



.single-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.menu-box {
    text-align: center;
    flex-basis: 32%;
    border: 1px solid #ddd;
    margin: 35px 0;
    padding: 20px 0;
    border-bottom: 3px solid #ddd;
}

.menu-box:hover img {
    border-radius: 0;
}

.menu-box img {
    max-width: 100px;
    border-radius: 50%;
    border: 1px solid #ddd;
    padding: 3px;
    transition: .3s;
}

.menu-box h4 {
    text-transform: capitalize;
    font-size: 22px;
    margin: 10px 0;
    padding: 10px;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

.menu-box h4 span {
    color: #cd5b9a;
    font-style: italic;
}

.select-meal
{    
    display: inline-block;
    width: 200px;
    padding: 3px;
    border-radius: 10px;    
    margin-top: 12px;
    border: 1px solid #cd5b9a;
    background-color: white;
    color: #cd5b9a;
}

.select-meal:hover 
{
    background-color: #cd5b9a;
    color: white;
}

a 
{
    text-decoration: none;
    color: black;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-display 
{
    display: block;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content img 
{
    border-radius: 100%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.modal-content h4 
{
    margin-bottom: 15px;
}

.grid-view {
      width: 100%;
      border-collapse: collapse;
}

.grid-view tbody 
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-view th, .grid-view td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.grid-view th {
    background-color: #f2f2f2;
}
    
@media (max-width: 1000px) {
    .container {
        width: 600px;
    }
    .menu-box {
        flex-basis: 45%;
    }
}

@media (max-width: 800px) {
    .container {
        width: 400px;
    }
    .menu-box {
        flex-basis: 100%;
    }
}