/* Sekcja główna */
.dups-section {
  margin-top: 2rem;
  border-top: 1px solid #000000;
  padding-top: 1rem;
  font-family: "Poppins", Sans-serif;
  color: #222; /* tekst bazowy */
}

/* Nagłówek listy */
.dups-heading {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000; /* granat */
  text-transform: uppercase;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.25rem;
font-family: "Poppins", Sans-serif;
}

/* Lista plików */
.dups-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Pojedynczy element */
.dups-item {
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 0.75rem 1rem;
  background: #fdfdfd;
  transition: box-shadow 0.2s ease;
}
.dups-item:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Plik: tytuł + przycisk */
.dups-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Tytuł pliku */
.dups-file-title {
  font-weight: 400;
  color: #015198 !important;
font-family: "Poppins", Sans-serif;
font-size: 14px !important;
}

/* Przycisk */
.dups-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #FFB600;
  color: #015198;
  font-weight: 600;
  border-radius: 0px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
font-family: "Poppins", Sans-serif;
}
.dups-btn:hover {
  background: #015198; /* ciemniejszy żółty */
  color: #FFB600;
font-family: "Poppins", Sans-serif;
}

/* Surowy URL */
.dups-url {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
  word-break: break-all;
  color: #555;
}
.dups-url code {
  background: #f4f4f4;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: "Poppins", Sans-serif;
font-size: 12px;
}
