/* Thread status icons — Font Awesome
   Logic: unread/new = prominent (blue envelope), read = subtle (gray outline envelope)
   "new" and "hot" and "closefolder" class selectors override the default below.
   Note: [class*="x"] selectors match any class containing that substring,
   which is how MyBB applies these to variant class names like "thread_new", "thread_hot", etc.
*/

.thread_status {
 
    display: inline-block; 
    width: 13px;
    margin-left: 2px;
}

/* Default state — thread has been read */
.thread_status:after {
 
    font-family: "FontAwesome"; 
    content: "\f003";   /* fa-envelope-o (open/outline envelope) */
    color: #777;        /* muted gray — nothing new to see here */
    font-size: 18px;
}

/* Unread — thread has new posts since last visit */
[class*="new"]:after {
	color: #2c82c9;
	content: "\f0e0";
	
	font-family: "FontAwesome";
}

/* Hot — high-traffic thread (flame icon, unchanged from original) */
[class*="hot"]:after {
 
    color: #fc6042;     /* orange-red */
    content: "\f06d";   /* fa-fire */
    padding-left: 1px;
}

/* Closed — thread is locked (lock icon, unchanged from original) */
[class*="closefolder"]:after {
 
    color: #777;
    content: "\f023";   /* fa-lock */
    padding-left: 2px;
}

