/* confirm.css */

body {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 2em;
  color: #333;
}

h2 {
  text-align: center;
  margin-bottom: 1.5em;
  color: #275a22;
}

ol {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5em;
  max-width: 800px;
  margin: 0 auto 2em auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  list-style-position: inside;
}

ol li {
  margin-bottom: 1em;
  line-height: 1.6;
}

button, form button {
  background-color: #275a22;
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  margin: 0.5em;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, form button:hover {
  background-color: #1d4319;
}

.button-area {
  text-align: center;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.button-area form {
  width: 100%;
  max-width: 300px;
}

.button-area button {
  width: 100%;
  padding: 0.8em 1.2em;
  font-size: 1em;
  border-radius: 6px;
  background-color: #275a22;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


form {
  display: inline-block;
}
