.file-upload-area {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #c0c6ce;
  border-radius: 12px;
  padding: 40px 20px;
  cursor: pointer;
  background: #fafbfc;
  transition: border-color 0.2s, background 0.2s;
}

.file-upload-area:hover {
  border-color: #8a92a0;
  background: #f3f5f7;
}

.file-upload-area input[type="file"] {
  display: none;
}

.file-upload-content {
  text-align: center;
}

.file-upload-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.file-upload-hint {
  font-size: 14px;
  color: #8a92a0;
  margin: 0;
}