/* === import === */

.import-container {
  max-width: 700px;
}

.import-info {
  padding: 1.5rem;
}

.import-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.import-table-example {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.import-table-example table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.import-table-example th {
  background: var(--grey-50);
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid var(--border);
}

.import-table-example td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.import-notes {
  background: #F8F6F4;
  padding: 1rem;
  border-radius: var(--radius-xs);
}

.import-notes p {
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
}

.import-notes p:last-child { margin-bottom: 0; }

.import-form {
  padding: 1.5rem;
}

.file-upload {
  position: relative;
  margin-bottom: 1rem;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.file-upload:hover .file-upload-label {
  border-color: var(--primary);
  background: var(--primary-light);
}

.file-upload-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.file-upload-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}
