/* FREE DOWNLOADS DARK THEME
 * Dark theme styles specific to the free downloads page
 */
/* Main card container */
[data-theme="dark"] .downloads-card {
  max-width: 100%;
  background-color: #263242;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  border: 1px solid #4a5568;
}

/* Breadcrumb styles */
[data-theme="dark"] .breadcrumb {
  background-color: #1e2a38;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

[data-theme="dark"] .breadcrumb-item {
  color: #a0aec0;
}

[data-theme="dark"] .breadcrumb-item.active {
  color: #e2e8f0;
}

[data-theme="dark"] .breadcrumb-item + .breadcrumb-item::before {
  color: #a0aec0;
}

/* Table styles */
[data-theme="dark"] .downloads-table {
  border-color: #4a5568;
  color: #e2e8f0;
}

/* Add this rule to ensure all table cells have white text */
[data-theme="dark"] .downloads-table td {
  color: #e2e8f0 !important;
}

[data-theme="dark"] .table-bordered {
  border-color: #4a5568;
}

[data-theme="dark"] .table-hover tbody tr:hover {
  background-color: rgba(74, 85, 104, 0.2);
}

/* Table header - updated to black background with white text */
[data-theme="dark"] .table-light,
[data-theme="dark"] .table-light > th,
[data-theme="dark"] .table-light > td,
[data-theme="dark"] .downloads-table thead,
[data-theme="dark"] .downloads-table thead tr,
[data-theme="dark"] .downloads-table thead th {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #4a5568;
}

/* Table row borders */
[data-theme="dark"] .table td,
[data-theme="dark"] .table th {
  border-color: #4a5568;
}

/* Table links */
[data-theme="dark"] .downloads-table a.text-decoration-none {
  color: #90cdf4;
}

[data-theme="dark"] .downloads-table a.text-decoration-none:hover {
  color: #63b3ed;
  text-decoration: underline !important;
}

/* Font Awesome icons */
[data-theme="dark"] .fa-folder {
  color: #f6e05e !important;
}

[data-theme="dark"] .fa-android {
  color: #48bb78 !important;
}

[data-theme="dark"] .fa-file-alt {
  color: #a0aec0 !important;
}

[data-theme="dark"] .fa-upload {
  color: #63b3ed !important;
}

[data-theme="dark"] .fa-folder-plus {
  color: #68d391 !important;
}

[data-theme="dark"] .fa-user-shield {
  color: #90cdf4 !important;
}

/* Download count badge */
[data-theme="dark"] .badge.bg-info {
  background-color: #4299e1 !important;
  color: #ffffff;
}

/* Table responsiveness */
[data-theme="dark"] .table-responsive {
  background-color: transparent;
}

/* Text content in the downloads information section */
[data-theme="dark"] .downloads-card .mt-4.text-center p {
  color: #ffffff;
}

[data-theme="dark"] .downloads-card .mt-4.text-center .list-unstyled li {
  color: #ffffff;
}