.menu-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 15px;
  }
  
  .menu-card-image {
    width: 100%;
    height: 150px;
    border-radius: 5px;
  }
  
  .menu-card-title {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .menu-card-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .menu-card-price {
    font-weight: bold;
    font-size: 16px;
  }
  
  .menu-card-button {
    background-color: #d9534f;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }