.trends-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px; /* ROW GAP */
  table-layout: fixed;
}

/* EACH ROW AS SEPARATE BLOCK */
.trends-table tr {
  background: #020617;
  height: 64px;
}

/* CELL STYLE */
.trends-table td {
  padding: 14px 12px;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* LEFT & RIGHT ROUNDING (ROW LOOK) */
.trends-table tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.trends-table tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* BORDER AROUND EACH ROW */
.trends-table tr td {
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.trends-table tr td:first-child {
  border-left: 1px solid #1e293b;
}

.trends-table tr td:last-child {
  border-right: 1px solid #1e293b;
}

/* FIXED COLUMN WIDTHS */
.col-title   { width: 45%; }
.col-volume  { width: 15%; }
.col-started { width: 15%; }
.col-source  { width: 15%; }
.col-menu    { width: 5%; text-align: center; }

/* STACKED TEXT */
.stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* MINI GRAPH */
.graph {
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 4px;
}

/* HOVER EFFECT (PREMIUM FEEL) */
.trends-table tr:hover {
  background: #020617;
  box-shadow: 0 0 0 1px #38bdf8;
}

/* MOBILE */
@media (max-width: 768px) {
  .col-source {
    display: none;
  }

  .col-title {
    width: 55%;
  }
}

/* HEADER LABEL ROW */
.trends-header {
  display: grid;
  grid-template-columns: 45% 15% 15% 15% 5%;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #1e293b;
}



/* MOBILE */
@media (max-width: 768px) {
  .trends-header .col-source {
    display: none;
  }
}


/* FIX HEADER LABEL VISIBILITY */
.trends-header {
  display: grid;
  grid-template-columns: 45% 15% 15% 15% 5%;
  padding: 12px 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #1e293b;
}

.trends-header div {
  font-size: 13px;
  font-weight: 700;      /* BOLD */
  color: #e5e7eb;
  white-space: normal;  /* TEXT POORA DIKHE */
  line-height: 1.2;
}

/* CENTER DOT COLUMN */
.trends-header .col-menu {
  text-align: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .trends-header .col-source {
    display: none;
  }
}



/* STARTED COLUMN STACK */
.started-time {
  font-size: 13px;
  color: #e5e7eb;
  line-height: 1.2;
}

.started-status {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  font-size: 12px;
  color: #22c55e; /* green */
  font-weight: 500;
}

.status-icon {
  font-size: 12px;
}


