body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 650px;
  margin: 40px auto;
  padding: 20px;
  background: #f5f5f5;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  margin-top: 0;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

input[type="text"]:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  color: #333;
  box-sizing: border-box;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1 4h10z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px;
}

select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

select:hover {
  border-color: #0066cc;
}

select option {
  padding: 8px;
  color: #333;
}

.info-text {
  margin-top: 20px;
  padding: 15px;
  background: #f0f8ff;
  border-left: 4px solid #0066cc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}

.info-text strong {
  color: #0066cc;
}

#result-container {
  text-align: center;
}

#dropzone {
  border: 2px dashed #0066cc;
  border-radius: 4px;
  background: #f9f9f9;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dropzone.dz-drag-hover {
  background: #e8f1ff;
  border-color: #0052a3;
}


.dz-message {
  font-size: 16px;
  color: #666;
}

.dz-preview {
  margin: 10px;
}

.dz-progress {
  background: #0066cc;
}

.dz-success-mark,
.dz-error-mark {
  font-size: 24px;
}

.dz-error-message {
    display: none !important;
}

#result-container{
  min-height: 0px;
}

#dropzone {
  padding: unset;
  height: 100px;
}