html {
  font-size: 13px; /* smaller base size */
}
.dedupBody {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 20px;
  margin-bottom: 40px;
  width: 90%;
}
.left-side {
  width: 35%;
}

.right-side {
  width: 45%;
  margin: 20px;
}
textarea {
  width: 100%;
  height: 100px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table,
th,
td {
  border: 1px solid black;
}
th,
td {
  padding: 4px;
  text-align: left;
}
.file-upload {
  margin-top: 10px;
}
.whitelist-container {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
  margin-top: 10px;
}
.whitelist-item {
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  padding: 2px 5px;
  margin: 2px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.whitelist-item span {
  margin-right: 10px;
}
.remove-btn {
  cursor: pointer;
  background-color: red;
  color: white;
  border: none;
  padding: 0 5px;
  border-radius: 3px;
}
.whitelist-domains {
  margin-top: 20px;
}

.disabled-container {
  opacity: 0.5;
  pointer-events: none; /* <- This blocks all mouse actions inside */
}
.wrap-cell {
  white-space: normal;
  word-break: break-word;
}

.domain-table-wrapper {
  max-height: 300px;
  overflow-y: auto;
  padding-bottom: 8px;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.domain-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.domain-table th,
.domain-table td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.domain-table th {
  background-color: #f8f8f8;
  border-bottom: 2px solid #ccc;
}
