#new-thread-title {
    min-height: 40px;
}

#new-thread-body {
    min-height: 120px;
	height: 200px;
}

#thread-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thread {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    line-height: 1.4;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.thread a {
    font-weight: bold;
    color: #2d6cdf;
    text-decoration: none;
}

.thread a:hover {
    text-decoration: underline;
}

.last-post-info {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}
