.container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(133, 113, 77, 0.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    max-width: 1000px;
  }
}

.text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

.text a {
  color: #85714D;
  text-decoration: underline;
  font-weight: 600;
}

.buttonGroup {
  display: flex;
  gap: 12px;
  shrink: 0;
}

.acceptButton {
  background-color: #85714D;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.acceptButton:hover {
  background-color: #6d5d3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(133, 113, 77, 0.3);
}

.declineButton {
  background-color: transparent;
  color: #85714D;
  border: 1px solid #85714D;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.declineButton:hover {
  background-color: rgba(133, 113, 77, 0.05);
}
