/* ボタン */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.action-section {
    text-align: center;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4a7aff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #999999;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  text-decoration: none;
}

.btn-delete {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  text-decoration: none;
}

.btn-container {
  text-align: center;
  margin-top: 20px;
}