.beverage-form {
  width: 20rem;
  max-width: 90%;
  margin: auto;
  display: block;
}

.beverage-item {
  width: 20rem;
  max-width: 95%;
  margin: 1rem;
}

.beverage-name {
  margin: 5px 0;
  font-size: 1.95em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  #margin-bottom: 30px;
}

.beverage-name a {
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: fit-content; /* или конкретная ширина, если нужно */
}

.beverage__title {
  font-size: 1.2rem;
  text-align: center;
}

.beverage__price {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem !important;
  /* Default h2 size in article: 1.5em, same as h1 */
  font-size: 1.3rem;
}

.beverage__description {
  text-align: center;
}

.beverage-rating {
  display: flex;
  flex-direction: column;
  #flex-direction: row;
  justify-content: center;
}

.beer-mugs-profile {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 992px) {
  .beverage-item {
    width: 20%;
  }
}

.profile-review-button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.profile-review-button-container .save-button {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  background-color: var(--color-btn-success);
  color: var(--color-text-primary);
  transition: background-color 0.2s;
}

.profile-review-button-container .save-button:hover {
  background-color: var(--color-btn-success-hover);
}

/* Center description text in beverage profile */
.profile .profile-description {
  text-align: center;
}

.profile .profile-description p {
  text-align: center;
}
