body {
  font-family: "Segoe UI", sans-serif;
  margin: 40px;
  background: #f6f8fa;
}

.container {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* button {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
} */

button {
  background: linear-gradient(145deg, #a8e063, #56ab2f); /* グリーンのグラデーション */
  border: none;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 0 #3c8d2f, 0 6px 10px rgba(0, 0, 0, 0.2); /* 下方向に影 */
  transition: all 0.2s ease;
}

/* ホバー時（浮き上がる感じ） */
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #3c8d2f, 0 8px 15px rgba(0, 0, 0, 0.25);
}

/* 押下時（沈む感じ） */
button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #3c8d2f, 0 3px 5px rgba(0, 0, 0, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border-bottom: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th {
  background-color: #f0f0f0;
}

/* アップロード中 */
.uploading {
    background-color: #fff3cd; /* 明るい黄色 */
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

/* アップロード成功 */
.success {
    background-color: #d4edda; /* 明るいグリーン */
    color: #155724;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

/* アップロード失敗 */
.error {
    background-color: #f8d7da; /* 明るい赤 */
    color: #721c24;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}
