.thread_status {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: none;
    background-color: var(--bg-card, #0f0f0f);
    border: 1px solid var(--border, #1a1a1a);
    position: relative;
    flex-shrink: 0;
}

.thread_status.dot_folder {
    background: transparent;
    border-color: var(--border, #1a1a1a);
}

.thread_status.dot_hotfolder {
    background: transparent;
    border-color: var(--accent, #ff4422);
}

.thread_status.dot_hotclosefolder {
    background: transparent;
    border-color: var(--accent, #ff4422);
    opacity: 0.5;
}

.thread_status.dot_closefolder {
    background: transparent;
    border-color: var(--border, #1a1a1a);
    opacity: 0.5;
}

.thread_status.dot_newfolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent, #ff4422);
}

.thread_status.dot_newhotfolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent-hover, #ff6644);
}

.thread_status.dot_newhotclosefolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent-hover, #ff6644);
    opacity: 0.5;
}

.thread_status.dot_newclosefolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent, #ff4422);
    opacity: 0.5;
}

.thread_status.folder {
    background: transparent;
    border-color: var(--border-light, #2a2a2a);
}

.thread_status.hotfolder {
    background: transparent;
    border-color: var(--accent, #ff4422);
}

.thread_status.hotclosefolder {
    background: transparent;
    border-color: var(--accent, #ff4422);
}

.thread_status.hotclosefolder::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;

    border-bottom: 1px solid var(--accent, #ff4422);
    transform: rotate(-45deg);
    transform-origin: center;
}

.thread_status.closefolder {
    background: transparent;
    border-color: var(--border-light, #2a2a2a);
}

.thread_status.closefolder::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid var(--text-dark, #2a2a2a);
    transform: rotate(-45deg);
    transform-origin: center;
}

.thread_status.movefolder {
    background: transparent;
    border-color: var(--info, #3b82f6);
}

.thread_status.movefolder::after {
    content: "→";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    color: var(--info, #3b82f6);
}

.thread_status.newfolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent, #ff4422);
}

.thread_status.newhotfolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent-hover, #ff6644);

    box-shadow: 0 0 4px var(--accent-dim, rgba(255, 68, 34, 0.3));
}

.thread_status.newhotclosefolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent-hover, #ff6644);
}

.thread_status.newhotclosefolder::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid var(--bg, #050505);
    transform: rotate(-45deg);
    transform-origin: center;
}

.thread_status.newclosefolder {
    background: var(--accent, #ff4422);
    border-color: var(--accent, #ff4422);
}

.thread_status.newclosefolder::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid var(--bg, #050505);
    transform: rotate(-45deg);
    transform-origin: center;
}
