#entity-inputs {
  display: none;
}

.entity-inputs {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.5s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.entity-input-group {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  text-align: left;
}

.entity-input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.entity-input-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0;
}

.upload-ref-btn {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  text-align: center;
  display: block;
}

.upload-ref-btn:hover {
  background: rgba(240, 247, 255, 0.9);
  border-color: #4a9eff;
  color: #4a9eff;
  transform: translateY(-1px);
}

.upload-ref-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.message {
  margin-top: 2.5rem;
}
