body {
  font-family: "Roboto", sans-serif;
  background-color: #BF7230;
}
.container {
  background-color: #FF9840;
  outline-style: groove;
  padding: 20px 20px;
  margin: 20px 20px;
}
form {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}
label {
    font-weight: bold;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
input:invalid, textarea:invalid {
    border-color: red;
}
button {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background: #2980b9;
}
.reviews {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.review {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: white;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
}
.review-text {
    margin: 10px 0;
    line-height: 1.5;
}
.edit-btn {
    background: #f39c12;
}
.edit-btn:hover {
    background: #e67e22;
}
.save-btn {
    background: #27ae60;
}
.save-btn:hover {
    background: #219a52;
}
.cancel-btn {
    background: #95a5a6;
}
.cancel-btn:hover {
    background: #7f8c8d;
}
.delete-btn {
    background: #e74c3c;
}
.delete-btn:hover {
    background: #c0392b;
}
.error {
    color: #e74c3c;
    margin-top: 5px;
}

.menu {
  display: flex;
  align-items: flex-end;
}

.menu__logo,
.menu__item {
  color: black;
  text-transform: uppercase;
  padding: 14px 16px;
  font-size: 1.5em;
  text-shadow:
    1px 1px 1px #A65C00,
    2px 2px 1px #A65C00;
}

.menu__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.menu__item {
  text-decoration: none;
  transition: color 0.3s;
}

.menu__item_selected {
  color: darkorange;
}

.menu__item:hover {
  color: #FF9840;
  text-decoration: underline;
}

.footer {
  text-align: center;
  font-weight: 900;
}

.footer__like {
  text-decoration: none;
}

.footer__like:hover {
  color: pink;
}
