* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: #f8fafc;
  color: #1f2937;
}

.scraper-ui {
  min-height: 100vh;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  /* PROGRESS */
  /* RESULTS */
}
.scraper-ui .container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.scraper-ui .title {
  font-size: 28px;
  color: #333;
  margin-bottom: 8px;
}
.scraper-ui .subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}
.scraper-ui label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #444;
}
.scraper-ui textarea {
  width: 100%;
  min-height: 150px;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: monospace;
  font-size: 14px;
  resize: vertical;
}
.scraper-ui textarea:focus {
  outline: none;
  border-color: #667eea;
}
.scraper-ui .info-box {
  background: #f0f4ff;
  border-left: 4px solid #667eea;
  padding: 12px;
  margin: 15px 0;
  font-size: 13px;
  color: #555;
}
.scraper-ui .actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.scraper-ui button {
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.scraper-ui button:hover:not(:disabled) {
  transform: translateY(-2px);
}
.scraper-ui button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.scraper-ui .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.scraper-ui .btn-secondary {
  background: #eee;
  color: #444;
}
.scraper-ui .btn-success {
  background: #28a745;
  color: #fff;
}
.scraper-ui .domain-count {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
}
.scraper-ui .progress-container {
  margin: 30px 0;
}
.scraper-ui .progress-bar {
  height: 30px;
  background: #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
}
.scraper-ui .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  transition: width 0.3s ease;
}
.scraper-ui .progress-text {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
}
.scraper-ui .results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.scraper-ui table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.scraper-ui table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.scraper-ui table th,
.scraper-ui table td {
  padding: 14px;
  font-size: 14px;
  text-align: left;
}
.scraper-ui table tbody tr:hover {
  background: #f8f9ff;
}

textarea {
  width: 100%;
  min-height: 200px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
}

.table {
  margin-top: 20px;
}/*# sourceMappingURL=main.css.map */