.topirank-conflicts {
  margin: 20px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.conflicts-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.conflicts-header h3 {
  margin: 0 0 10px 0;
  color: #23282d;
  font-size: 1.3em;
}

.conflicts-header p {
  margin: 0;
  color: #666;
}

.conflicts-list {
  margin-bottom: 20px;
}

.conflict-item {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.conflict-item:hover {
  background-color: #f9f9f9;
}

.conflict-item:last-child {
  border-bottom: none;
}

.conflict-info {
  flex: 1;
  padding-right: 20px;
}

.conflict-title {
  font-weight: 500;
  color: #23282d;
  margin-bottom: 5px;
}

.conflict-path {
  font-size: 0.9em;
  color: #666;
  word-break: break-all;
}

.conflict-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.conflict-actions label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.conflict-actions label:hover {
  background-color: #f0f0f0;
}

.conflict-actions input[type="radio"] {
  margin: 0;
}

.conflicts-actions {
  text-align: right;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

#resolve-conflicts {
  padding: 8px 20px;
  font-weight: 500;
}
