body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #ffe4e1;
  font-family: Arial, sans-serif;
  text-align: center;
}

.container {
  text-align: center;
}

img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin: 20px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

button {
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#yes-btn {
  background-color: #4caf50;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#no-btn {
  background-color: #ff4d4d;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#yes.html #yes-btn,
#yes.html #no-btn {
  display: none !important;
}
