@charset "UTF-8";
body {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  height: 100%;
  margin: 0;
  background: #f4f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.upload-container .file-upload-wrapper {
  position: relative;
  margin-bottom: 10px;
}
.upload-container .file-upload-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  width: 100%;
}
.upload-container .file-upload-label {
  display: block;
  background-color: #5c67f2;
  color: white;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.upload-container .file-upload-label:hover {
  background-color: #4a54e1;
}
.upload-container .file-upload-name {
  display: block;
  padding: 5px;
  font-size: 14px;
  color: #333;
  margin-top: 8px;
  text-align: center;
}
.upload-container .submit-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.container {
  width: 80%;
  max-width: 600px;
  background: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.success, .error, .output {
  color: #2c3e50;
  margin: 10px 0;
}

.download-link a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}
.download-link a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */