* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f1f2f3;
}

.container{
  box-sizing: border-box;
  max-width: 1560px;
  min-width: 1240px;
  margin: 25px auto;
  color: #333;
  line-height: 1.6;
}

.container *{
  box-sizing: border-box;
}

header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-size: 24px;
  margin-bottom: 5px;
}

header p{
  font-size: 16px;
  opacity: 0.85;
}

.upload-area {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  text-align: center;
  border: 2px dashed #ddd;
  transition: all 0.3s;
}

.upload-area:hover {
  border-color: #4a90e2;
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.upload-text {
  margin-bottom: 20px;
}

.upload-btn {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 12px 50px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.upload-btn:hover {
  background-color: #3a7bc8;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.action-btn {
  padding: 15px 50px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
}

.action-btn:hover {
  background-color: #e9ecef;
}

.results {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
}

.result-table th,
.result-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.result-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.result-table tr:hover {
  background-color: #f8f9fa;
}

.result-table img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 4px;
}

.footer {
  margin-bottom: 25px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;

}

.footer h3{
  font-size: 18px;
}

.footer p{
  color: #666;
  margin-top: 10px;
}

.notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.notice.show {
  opacity: 1;
}

.file-info {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}
