.thread_status {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-          items: center;
      justify-content: center;
      font-size: 14px;
    }

    /* Status icons using same class names */
    .newfolder::before {
      content: "\f15c"; /* file */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--accent);
    }

    .newhotfolder::before {
      content: "\f06d"; /* fire */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: red;
    }

    .hotfolder::before {
      content: "\f06d"; /* fire */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: orange;
    }

    .folder::before {
      content: "\f15c"; /* file regular */
      font-family: "Font Awesome 6 Free";
      font-weight: 400;
      color: var(--text-muted);
    }

    .dot_folder::before {
      content: "\f007"; /* user */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--accent-soft);
    }

    .closefolder::before {
      content: "\f023"; /* lock */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #888;
    }

    .clear {
      clear: both;
    }
.thread-title {
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  /* margin-bottom: 8px; */
  padding-left: 24px;
  position: relative;
}

/* Base icon setup */
.thread-title::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
}

/* Icon types */
.thread-title.hot-new::before {
  content: "\f06d"; /* fire */
  color: red;
}

.thread-title.hot-old::before {
  content: "\f06d"; /* fire */
  color: orange;
}

.thread-title.no-new::before {
  content: "\f15c"; /* file */
  font-weight: 400;
  color: var(--text-muted);
}

.thread-title.locked::before {
  content: "\f023"; /* lock */
  color: #888;
}

.thread-title.your-post::before {
  content: "\f007"; /* user */
  color: var(--accent-soft);
}
@media (max-width: 768px) {.hidemob {
  display: none !important;
 }}
 .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .pagination {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pagination a {
      padding: 6px 10px;
      border-radius: 6px;
      background-color: var(--card-bg);
      color: var(--text-light);
      font-size: 14px;
      text-decoration: none;
      transition: 0.2s;
    }

    .pagination a:hover {
      background-color: var(--accent);
      color: white;
    }

    .pagination a.active {
      background-color: var(--accent-soft);
      color: white;
    }
.button {background-color: var(--card-bg);
    border: 1px solid #333;
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
	transition: 0.2s ease;}
		
		