/* User Threads Display */
.user_threads_container {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    background: var(--block-med);
    border: 1px solid var(--accent1);
}

.threads_section {
    margin-bottom: 30px;
}

.threads_row {
    display: flex;
    width: 100%;
    margin-bottom: 5px;
}

.threads_header {
    background: var(--block-dark);
    color: var(--text-color);
    font-weight: bold;
    padding: 10px 5px;
    margin-bottom: 10px;
    text-align: center;
}

.thread_column {
    flex: 1;
    padding: 10px;
    border-right: 1px solid var(--accent1);
    vertical-align: top;
}

.thread_column:last-child {
    border-right: none;
}

.thread_column_full {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.closed_header {
    background: var(--block-dark);
    color: #fff;
    font-weight: bold;
    padding: 10px 5px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.thread_item {
    padding: 8px;
    margin-bottom: 15px;
    background: var(--block-light);
    border-radius: 3px;
}

.thread_title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.thread_title a {
    color: var(--accent1);
    text-decoration: none;
}

.thread_title a:hover {
    text-decoration: underline;
	color: var(--text-color);
}

.strikethrough {
    text-decoration: line-through;
}

.retconned {
    font-size: 11px;
    color: #999;
    font-style: italic;
}

/* IMPORTANT: Color coding for last post status */
.user_last_green .thread_title a {
    color: #28a745 !important;
    font-weight: bold;
}

.user_not_last_red .thread_title a {
    color: #dc3545 !important;
}

/* Add visual flags next to thread titles */
.user_last_green .thread_title::before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
    margin-right: 5px;
}

.user_not_last_red .thread_title::before {
    content: "⚠ ";
    color: #dc3545;
    font-weight: bold;
    margin-right: 5px;
}

.thread_info {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

.thread_started, .thread_lastpost {
    display: inline-block;
}

/* Stale thread indicator */
.stale_thread {
    font-size: 11px;
    color: #777;
    font-style: italic;
    font-weight: normal;
}