/* NovaGaming - Thread Status Icons */
.thread_status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ng-bg-tertiary);
    transition: all 0.3s ease;
}

.thread_status.dot_folder {
    background: rgba(107, 107, 123, 0.3);
}

.thread_status.dot_hotfolder {
    background: rgba(255, 183, 0, 0.3);
}

.thread_status.dot_hotclosefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status.dot_closefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status.dot_newfolder {
    background: rgba(0, 210, 106, 0.3);
}

.thread_status.dot_newhotfolder {
    background: rgba(0, 210, 106, 0.3);
}

.thread_status.dot_newhotclosefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status.dot_newclosefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status.folder {
    background: var(--ng-bg-tertiary);
}

.thread_status.hotfolder {
    background: rgba(255, 183, 0, 0.3);
}

.thread_status.hotclosefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status.closefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status.movefolder {
    background: rgba(0, 212, 255, 0.3);
}

.thread_status.newfolder {
    background: rgba(0, 210, 106, 0.3);
}

.thread_status.newhotfolder {
    background: rgba(0, 210, 106, 0.3);
}

.thread_status.newhotclosefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status.newclosefolder {
    background: rgba(255, 71, 87, 0.3);
}

.thread_status:hover {
    transform: scale(1.2);
    box-shadow: var(--ng-glow);
}

/* Subforum Icons */
.subforumicon {
    height: 12px;
    width: 12px;
    display: inline-flex;
    margin: 0 4px;
    align-items: center;
    justify-content: center;
}

.subforum_minion {
    background: rgba(0, 210, 106, 0.5);
    border-radius: 50%;
}

.subforum_minioff {
    background: rgba(107, 107, 123, 0.5);
    border-radius: 50%;
}

.subforum_minioffclose {
    background: rgba(255, 71, 87, 0.5);
    border-radius: 50%;
}

.subforum_miniofflink {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 50%;
}
