.dedupe-container {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #e1e1e1;
  font-family: inherit;
}

.dedupe-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.dedupe-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

.dedupe-text-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .dedupe-text-areas {
    grid-template-columns: 1fr;
  }
}

.dedupe-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dedupe-field-group label {
  font-weight: bold;
  font-size: 14px;
}

.dedupe-field-group textarea {
  width: 100%;
  height: 250px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: monospace;
  font-size: 14px;
}

.dedupe-btn-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.dedupe-btn {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  color: white !important;
}

.dedupe-btn-primary { background-color: #3498db; }
.dedupe-btn-primary:hover { background-color: #2980b9; }

.dedupe-btn-secondary { background-color: #e74c3c; }
.dedupe-btn-secondary:hover { background-color: #c0392b; }

.dedupe-btn-copy { background-color: #2ecc71; }
.dedupe-btn-copy:hover { background-color: #27ae60; }

.dedupe-stats {
  margin-top: 20px;
  padding: 12px;
  background: #eef7fc;
  border-left: 4px solid #3498db;
  border-radius: 4px;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
}