/*
 * Ceylon Downloader - Clean, Lightweight Production Stylesheet
 */

/* Clean Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Nav Tab Active */
.nav-tab.active {
  background-color: #dc2626;
  color: #ffffff;
}

/* Format Tab Active */
.format-tab.active {
  border-color: #ef4444;
  color: #ffffff;
}

/* Table Row Smooth Transitions */
tbody tr {
  transition: background-color 0.15s ease;
}

tbody tr:hover {
  background-color: rgba(30, 41, 59, 0.6);
}
