.menu-image {
  width: 280px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.like-counter {
  font-size: 1rem;
}

/* Menu modal add/edit forms begins */
.menu-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: scroll;

  & h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
}

.menu-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 280px;
  overflow: scroll;
  padding-top: 16px;

  & input:not([type="checkbox"], [type="radio"]),
  & textarea,
  & select {
    min-height: 42px;
  }
}

.menu-item-price-input {
  width: 56px;
}

/* Menu turbo edit forms ends */

@media (min-width: 1024px) {
  .menu-form {
    overflow: hidden;
  }
}
