:root {
  /* Основная палитра */
  --bg: #050505;           /* Глубокий черный */
  --card-bg: #0a0a0a;      /* Чуть светлее для карточек */
  --text: #ffffff;
  --dim-text: #666666;     /* Технический серый */
  
  /* Акцентный цвет - Огуречный Неон */
  --accent: #00ff41;       /* Яркий матричный зеленый */
  --accent-dim: rgba(0, 255, 65, 0.1);
  --error: #ff3333;
  
  /* Границы */
  --border: rgba(255, 255, 255, 0.15);
  --border-hover: rgba(255, 255, 255, 0.4);
  
  /* Шрифты */
  --font-main: "Inter", sans-serif;
  --font-head: "Unbounded", sans-serif;
}


/* Светлая тема (по умолчанию остаётся тёмная) */
body.theme-light {
  /* Фоны */
  --bg: #f6f6f6;
  --card-bg: #ffffff;
  --card-bg-2: #f0f0f0;

  /* Текст */
  --text: #0b0b0b;
  --dim-text: rgba(0,0,0,0.68);

  /* Границы/тени */
  --border: rgba(0,0,0,0.14);
  --border-hover: rgba(0,0,0,0.28);
  --shadow: 0 10px 40px rgba(0,0,0,0.10);
}


/* Светлая тема: делаем хедер светлым, чтобы текст не сливался */
body.theme-light .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}
body.theme-light .nav-link { color: rgba(0,0,0,0.72); }
body.theme-light .nav-link:hover { color: var(--accent); }
body.theme-light .header-right .btn,
body.theme-light .theme-toggle-btn {
  color: rgba(0,0,0,0.85);
}
/* Кнопка переключения темы */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.72rem;
  border-radius: 10px;
  cursor: pointer;
}
.theme-toggle-btn:hover { border-color: var(--accent); }

/* --- Светлая тема: общий контраст по всему сайту --- */
body.theme-light .form-card,
body.theme-light .film-card,
body.theme-light .media-card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

body.theme-light .film-card:hover {
  background: var(--card-bg-2);
}

body.theme-light input[type="text"],
body.theme-light input[type="password"],
body.theme-light input[type="number"],
body.theme-light input[type="date"],
body.theme-light input[type="url"],
body.theme-light select,
body.theme-light textarea {
  background: var(--card-bg);
  color: var(--text);
}

body.theme-light .nav-link:hover,
body.theme-light .nav-link.active {
  background: rgba(0,0,0,0.03);
}

body.theme-light .rating-bar-bg { background: rgba(0,0,0,0.08); }

body.theme-light .film-desc { color: rgba(0,0,0,0.72); }
body.theme-light .hero-title .outline { -webkit-text-stroke: 1px rgba(0,0,0,0.25); }

/* Таблицы (в т.ч. топ пользователей) */
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid var(--border); padding: 12px; }
th { background: var(--card-bg); color: var(--dim-text); text-align: left; }
td { color: var(--text); }
body.theme-light th { background: var(--card-bg-2); color: rgba(0,0,0,0.75); }
body.theme-light td { background: var(--card-bg); }
body.theme-light tr:nth-child(even) td { background: #fafafa; }

/* Круговой рейтинг */
body.theme-light .circle-bg { stroke: rgba(0,0,0,0.12); }
body.theme-light .circle-progress.rating-medium { stroke: #111; }

/* Медиа: превью/кнопки */
body.theme-light .media-thumb { background: #e8e8e8; }
body.theme-light .media-del {
  background: rgba(255,255,255,0.90);
  color: rgba(0,0,0,0.85);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, .logo, .nav-link, .btn, .section-label, label, th {
  font-family: var(--font-head);
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; transition: 0.3s; }
a:hover { color: var(--accent); }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--accent); }
.logo-emoji { font-size: 1.4rem; }

.main-nav { display: flex; gap: 0; }

.nav-link {
  color: var(--dim-text);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 10px 20px;
  border: 1px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.header-right { display: flex; align-items: center; gap: 20px; }

.user-badge { text-align: right; line-height: 1.2; }
.user-name { font-family: var(--font-head); font-size: 0.8rem; color: var(--text); }
.user-role { font-size: 0.65rem; color: var(--dim-text); letter-spacing: 0.5px; }

/* --- MAIN LAYOUT --- */
.page-main {
  padding-top: 120px;
  padding-bottom: 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  flex: 1;
}

.section-label {
  color: var(--accent);
  font-size: 0.75rem;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 2px;
}

.hero-title, .section-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 20px;
}
.section-title { font-size: 2rem; }

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.section-sub {
  font-size: 1rem;
  color: var(--dim-text);
  max-width: 600px;
  margin-bottom: 40px;
}

/* --- FORMS & INPUTS --- */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label { font-size: 0.7rem; color: var(--dim-text); letter-spacing: 1px; }

input[type="text"], input[type="password"], input[type="number"], 
input[type="date"], input[type="url"], select, textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  outline: none;
  width: 100%;
  border-radius: 0;
  transition: 0.3s;
}

textarea { min-height: 100px; text-transform: none; font-family: var(--font-main); }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

.helper { font-size: 0.75rem; color: var(--dim-text); margin-top: 5px; }
.status { margin-top: 10px; font-size: 0.8rem; font-weight: bold; min-height: 20px; }
.notice { color: var(--accent); border: 1px solid var(--accent); padding: 15px; margin-bottom: 20px; font-size: 0.85rem; }

/* Buttons */
.btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 15px 30px;
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  border-radius: 0;
  width: auto;
  display: inline-block;
}

.btn:hover { background: var(--text); color: black; border-color: var(--text); }
.btn-secondary { border-color: var(--dim-text); color: var(--dim-text); }
.btn-secondary:hover { background: var(--dim-text); color: black; }
.btn-small { padding: 8px 16px; font-size: 0.7rem; }

/* --- FILTERS PANEL --- */
.filters-panel {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  margin-bottom: 60px;
}

.filters-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.filters-actions { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.filters-inline { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
/* Filter boxes */
.filter-box { display: flex; flex-direction: column; gap: 8px; }
.search-box input { font-family: var(--font-main); text-transform: none; }

.select-wrapper { position: relative; }
.select-wrapper select { appearance: none; -webkit-appearance: none; padding-right: 44px; }
.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dim-text);
  pointer-events: none;
  font-size: 0.9rem;
  line-height: 1;
}

/* Checkbox Styling */
/* Fix: use the checkbox input itself as the styled control.
   This prevents "missing checkboxes" in admin panel while keeping ONLY TITKI fine. */
.checkbox-label{
  display:flex;
  align-items:center;
  cursor:pointer;
  font-size:0.75rem;
  gap:10px;
  color:var(--dim-text);
  user-select:none;
}

.checkbox-label input[type="checkbox"]{
  position:static;
  opacity:1;
  width:18px;
  height:18px;
  margin:0;
  pointer-events:auto;
  appearance:none;
  -webkit-appearance:none;
  border:1px solid var(--dim-text);
  background:transparent;
  display:inline-grid;
  place-content:center;
  transition: border-color .15s ease, background-color .15s ease;
}

.checkbox-label input[type="checkbox"]::before{
  content:"";
  width:10px;
  height:10px;
  transform:scale(0);
  transition: transform .15s ease;
  background: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked{
  border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked::before{
  transform:scale(1);
}

/* Hide old helper span if it exists (legacy markup) */
.checkbox-label .checkmark{
  display:none !important;
}

/* --- FILM LIST & CARDS --- */
.film-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px; /* ОТСТУП МЕЖДУ КАРТОЧКАМИ */
  border: none;
  padding-bottom: 40px;
}

.film-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 25px;
  transition: 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.film-card:hover {
  background: var(--card-bg);
  border-color: var(--accent);
  transform: translateY(-5px);
}
.film-card:hover .film-title { color: var(--accent); }

.film-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 20px;
  /* filter: grayscale(100%);  <-- УБРАЛИ ЧБ ФИЛЬТР */
  transition: 0.4s;
  border: 1px solid var(--border);
}

.film-card:hover .film-image {
  border-color: var(--accent);
}

/* Стили для блока оценок внутри карточки */
.film-rating-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: auto;           /* Прижимает блок оценок вниз карточки */
  padding-top: 15px;
  border-top: 1px solid var(--border);
  margin-bottom: 12px;
}

.rating-item { display: flex; flex-direction: column; gap: 8px; }

.rating-labels {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.65rem;
  font-family: var(--font-head);
  color: var(--dim-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  position: relative;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.5s ease;
}

/* Выравнивание контента карточек */
.film-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
  line-height: 1.2;

  /* 2 строки максимум, чтобы карточки были ровнее */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.film-meta-row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--dim-text);
  margin-bottom: 15px;
  font-family: var(--font-head);
  min-height: 1.1em;
}

.film-year {
  flex: 0 0 auto;
}

/* Все жанры выводим, а если не помещаются — показываем троеточие */
.film-genres{display:block;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}


/* Описание фильма в карточке (для обрезки) */
.film-card-desc {
  font-size: 0.85rem;
  color: var(--dim-text);
  margin-bottom: 20px;
  line-height: 1.4;
  height: 60px;
  overflow: hidden;
}

.chip-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  min-height: 24px; /* чтобы высота "подвала" карточки была одинаковой */
}

.chip {
  font-size: 0.65rem;
  padding: 4px 8px;
  border: 1px solid var(--border);
  color: var(--dim-text);
  text-transform: uppercase;
}
.chip.titki { border-color: #ff0055; color: #ff0055; }

/* --- FILM DETAIL PAGE --- */

.film-detail-header {
  display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-bottom: 40px;
}
.film-detail-image { width: 100%; border: 1px solid var(--border); }
.film-desc { font-size: 1rem; color: #aaa; margin-bottom: 40px; max-width: 800px; line-height: 1.6; }

.film-section { margin-bottom: 60px; border-top: 1px solid var(--border); padding-top: 30px; }
.film-section-title { font-size: 1.2rem; margin-bottom: 20px; color: var(--text); }

/* Tables (Admin Criteria) */
.admin-table-wrapper { overflow-x: auto; margin-bottom: 20px; }
.criteria-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.criteria-table th, .criteria-table td { border: 1px solid var(--border); padding: 12px; text-align: center; }
.criteria-table th { background: var(--card-bg); color: var(--dim-text); text-align: left; }
.criteria-table td:first-child { text-align: left; font-weight: bold; color: var(--text); }

/* SLIDERS (Industrial Style) */
.slider-row { display: flex; align-items: center; gap: 15px; width: 100%; }
input[type=range] {-webkit-appearance: none; width: 100%; background: transparent; padding: 0; border: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; height: 20px; width: 20px; background: var(--bg); border: 2px solid var(--accent); cursor: pointer; margin-top: -8px; border-radius: 0;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%; height: 4px; background: var(--border); border-radius: 0;
}
.slider-value { font-family: var(--font-head); font-size: 1.2rem; color: var(--accent); min-width: 50px; text-align: right; }

/* FILE UPLOAD (Dropzone) */
.dropzone {
  border: 1px dashed var(--dim-text); background: rgba(255,255,255,0.02); padding: 30px; text-align: center; cursor: pointer; transition: 0.3s;
}
.dropzone:hover { border-color: var(--accent); background: rgba(0, 255, 65, 0.05); }
.dropzone-text { color: var(--dim-text); font-size: 0.75rem; text-transform: uppercase; }

/* Trailer */
.trailer-player { width: 100%; aspect-ratio: 16/9; background: black; border: 1px solid var(--border); }
.trailer-player iframe { width: 100%; height: 100%; border: none; }

/* Circular rating (profile) */
.circular-rating { width: 70px; height: 70px; position: relative; }
.circular-rating svg { width: 70px; height: 70px; transform: rotate(-90deg); }
.circle-bg { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 6; }
.circle-progress { fill: none; stroke-width: 6; stroke-linecap: square; transition: stroke-dashoffset 0.6s ease; }
.circle-progress.rating-bad { stroke: #ff3333; }
.circle-progress.rating-medium { stroke: #ffffff; }
.circle-progress.rating-good { stroke: var(--accent); }
.circular-rating .rating-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circular-rating .rating-number { font-family: var(--font-head); font-size: 0.85rem; color: var(--text); }

/* Footer */
.site-footer { padding: 60px 5%; border-top: 1px solid var(--border); background: var(--bg); margin-top: auto; }
.footer-content {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--font-head); font-size: 0.7rem; color: var(--dim-text); letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header { flex-wrap: wrap; gap: 12px; padding: 12px 20px; }
  .logo { flex: 1 1 100%; justify-content: center; }
  .main-nav { flex: 1 1 100%; justify-content: center; flex-wrap: wrap; }
  .nav-link { padding: 8px 14px; }
  .header-right { flex: 1 1 100%; justify-content: center; flex-wrap: wrap; gap: 10px; }
  .page-main { padding-top: 190px; padding-left: 20px; padding-right: 20px; }
  .filters-grid, .film-detail-header { grid-template-columns: 1fr; }
  .film-list { grid-template-columns: 1fr; border-right: 1px solid var(--border); }
  .form-row-inline { grid-template-columns: 1fr; }
  .filter-grid { grid-template-columns: 1fr !important; }
}

/* --- Media page: image input (URL or file) --- */
.media-image-box .media-image-input{
  display:flex;
  gap:12px;
  align-items:stretch;
}
.media-image-box .media-image-preview{
  width:84px;
  height:84px;
  border-radius:14px;
  border:1px solid var(--border);
  overflow:hidden;
  flex:0 0 auto;
}
.media-image-box .media-image-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.media-image-box .media-image-right{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
  flex:1 1 auto;
}
.media-image-box .media-image-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.media-image-box .media-image-hint{
  font-size:0.82rem;
  color: var(--dim-text);
}
.btn-ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: var(--accent);
}
@media (max-width: 560px){
  .media-image-box .media-image-input{flex-direction:column;}
  .media-image-box .media-image-preview{width:100%; height:160px;}
}


/* --- MEDIA GRID (tiles) --- */
.media-grid-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.media-grid-hint{
  color: var(--dim-text);
  font-size: 0.9rem;
}

.media-controls{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.media-controls input{
  min-width: 220px;
}
.media-filter-select{
  min-width: 180px;
}
@media (max-width: 560px){
  .media-controls{ width:100%; }
  .media-controls input{ min-width: 0; flex: 1; }
  .media-filter-select{ flex: 1; min-width: 0; }
}

.media-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.media-card{
  border: 1px solid var(--border);
  background: var(--card-bg);
  border-radius: 18px;
  overflow: hidden;
  display:flex;
  flex-direction:column;
}

.media-thumb{
  position:relative;
  width:100%;
  aspect-ratio: 3 / 2;
  background: #070707;
  border-bottom: 1px solid var(--border);
}
.media-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.media-thumb-placeholder{
  width:100%;
  height:100%;
}
.media-del{
  position:absolute;
  top: 10px;
  right: 10px;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(6px);
}

.media-card-body{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  min-width:0;
}
.media-title{
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-sub{
  color: var(--dim-text);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-stats{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.media-avg{
  display:flex;
  align-items:baseline;
  gap:8px;
}
.media-avg-num{
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--accent);
  font-size: 1.2rem;
}
.media-avg-label{
  color: var(--dim-text);
  font-size: 0.75rem;
}
.media-votes{
  color: var(--dim-text);
  font-size: 0.82rem;
}

.media-rate{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.media-rate-slider{
  flex: 1 1 140px;
  min-width: 140px;
}
.media-rate-value{
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--accent);
  min-width: 24px;
  text-align:right;
}
.media-rate-guest{
  color: var(--dim-text);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.media-card-status{
  min-height: 18px;
  color: var(--accent);
  font-size: 0.85rem;
}
.media-card-status.error{
  color: var(--error);
}

.media-empty{
  color: var(--dim-text);
  padding: 14px 4px;
}

@media (max-width: 768px){
  .media-grid{ grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .media-thumb{ aspect-ratio: 4 / 3; }
}


@media (max-width: 420px) {
  .site-header { padding-left: 12px; padding-right: 12px; }
  .page-main { padding-left: 12px; padding-right: 12px; }
  .filters-panel { padding: 24px 0; }
  .filters-actions { flex-direction: column; align-items: stretch; }
  .filters-inline { width: 100%; }
  .filters-inline > * { width: 100%; }
  .nav-link { font-size: 0.7rem; padding: 8px 10px; }
  .film-card { padding: 18px; }
  .film-list { gap: 18px; }
  img, iframe, video { max-width: 100%; }
}

/* --- FIX: светлая тема — контраст цифр рейтинга в карточках --- */
body.theme-light .rating-labels > :last-child,
body.theme-light .rating-labels span:last-child,
body.theme-light .rating-labels strong,
body.theme-light .rating-labels b,
body.theme-light .rating-value,
body.theme-light .rating-number,
body.theme-light .rating-score {
  color: #0b0b0b !important;
  font-weight: 800;
}
body.theme-light .rating-labels > :first-child,
body.theme-light .rating-labels span:first-child {
  color: rgba(0,0,0,0.65) !important;
}

/* --- FIX: светлая тема — таблицы (топ пользователей) сделать темнее --- */
body.theme-light table,
body.theme-light th,
body.theme-light td {
  color: #0b0b0b;
}
body.theme-light td {
  color: #0b0b0b !important;
}
body.theme-light table a {
  color: #0b0b0b;
  text-decoration: underline;
}
