    .restaurant-card {
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .restaurant-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      position: relative;
      border-radius: 25px;
    }

    .card-body {
      padding: 10px;
      height: 100px;
    }

    .meta-info {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #666;

    }

    .restaurant-name {
      font-weight: 700;
      font-size: 16px;
    }

    .rating {
      background-color: #4caf50;
      color: white;
      padding: 2px 6px;
      font-size: 12px;
      border-radius: 12px;
      float: right;
    }

    .meta-info {
      font-size: 13px;
      color: #666;
    }

    .time {
      display: flex;
      justify-content: end;
    }

    .img-padding {
      padding: 10px;
    }