body {
  font-family: Arial, sans-serif;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.modal-content {
  background-color: #fff;
  width: 350px;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 20px 30px;
  text-align: center;
  font-family: sans-serif;
  position: relative;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #f2f2f2;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  border: 1px grey solid;
}

.close {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #3f3f3f;
}

.modal-title {
  color: #3f3f3f;
}

.modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

#language-btn-ua {
  background-color: #ffa955;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 10px 25px;
  font-size: 15px;
  cursor: pointer;
}

#language-btn-ua:hover {
  background-color: #f37346;
}

#language-link-ua {
  color: #fff;
}

#language-btn-ru {
  border: 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 10px 25px;
  font-size: 15px;
  cursor: pointer;
}

#language-btn-ru:hover {
  background-color: #f2f2f2;
}

#language-link-ru {
  color: grey;
}

#added-to-cart-text {
  margin: 0;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.2;
}

#added-to-cart-link {
  margin: 0;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1;
  color: #ffa955;
}

#added-to-cart-link:hover {
  text-decoration: underline;
}