/* Dark UI Styles */
.fdp-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.fdp-tab {
  background: #222;
  color: #fff;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
}
.fdp-tab.active {
  background: #1db954;
  color: #fff;
}
#fdp-search {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px;
  border: none;
  border-radius: 5px;
  background: #111;
  color: #fff;
}
#fdp-filters {
  margin-bottom: 15px;
}
#fdp-filters select {
  padding: 8px;
  margin-right: 10px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 5px;
}
#fdp-content {
  background: #181818;
  padding: 15px;
  border-radius: 8px;
  color: #eee;
}
.fdp-item {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.fdp-item:last-child {
  border-bottom: none;
}
.fdp-item strong {
  color: #1db954;
}
.fdp-table {
  width: 100%;
  border-collapse: collapse;
}
.fdp-table th, .fdp-table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #333;
}
.fdp-table th {
  background: #111;
  color: #ccc;
}
.fdp-table td {
  color: #eee;
}
