/* ————————————————————————————————
   ALCHIMISTE PRÉPARATEURS — STYLE SITE RÉMY
——————————————————————————————— */

#alchimiste-preparateurs {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  color: #fff;
  font-family: "Knockout-HTF34-JuniorSumo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#alchimiste-preparateurs h1 {
  font-family: "Knockout-HTF93-ultmtheviwt", sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: 0.15rem;
}

/* ——— Tabs ——— */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tab {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Knockout-HTF93-ultmtheviwt", sans-serif;
  font-size: 1.2rem;
  transition: all 0.25s ease-in-out;
    text-transform: uppercase;
}

.tab:hover {
  background: #fff;
  color: #000;
}

.tab.active {
  background: #fff;
  color: #000;
}

/* ——— Tab content ——— */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ——— Filters ——— */
.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
}

.filters select {
  background: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "Knockout-HTF34-JuniorSumo";
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.filters select:focus {
  outline: none;
  background: #fff;
  color: #000;
}

.filters button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Knockout-HTF93-ultmtheviwt";
  transition: all 0.25s ease-in-out;
  text-transform: uppercase;
}

.filters button:hover {
  background: #fff;
  color: #000;
}

/* ——— Table ——— */
.wp-list-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  background: none;
  font-family: "Knockout-HTF34-JuniorSumo";
  font-size: 1.1rem;
  text-transform: uppercase;
}

.wp-list-table thead {
  border-bottom: 2px solid #fff;
}

.wp-list-table th,
.wp-list-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #333;
  text-align: left;
}

.wp-list-table th {
  color: #ccc;
  font-weight: normal;
  letter-spacing: 0.05rem;
}

.wp-list-table tbody tr:nth-child(even) {
  background: rgba(50, 50, 50, 0.5);
}

.wp-list-table tr:hover {
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

/* ——— Buttons in table ——— */
.btn-update {
  border: 2px solid #fff;
  background: none;
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-family: "Knockout-HTF34-JuniorSumo";
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-update:hover {
  background: #fff;
  color: #000;
}

/* ——— Bulk actions ——— */
.bulk-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.bulk-actions select {
  background: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "Knockout-HTF34-JuniorSumo";
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.bulk-actions button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Knockout-HTF93-ultmtheviwt";
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  transition: all 0.25s ease-in-out;
    text-transform: uppercase;
}

.bulk-actions button:hover {
  background: #fff;
  color: #000;
}

/* ——— Responsive ——— */
@media (max-width: 768px) {
  .filters,
  .bulk-actions {
    flex-direction: column;
    align-items: center;
  }

  .wp-list-table th,
  .wp-list-table td {
    font-size: 0.9rem;
  }

  .tab {
    font-size: 1rem;
  }
}