/* 日常思考样式 */

.thoughts-list {
    padding: 10px;
}

.thought-item {
    padding: 10px;
    margin-bottom: 8px;
    background: white;
    font-family: var(--win98-font);
    border-top: 1px solid var(--win98-shadow);
    border-left: 1px solid var(--win98-shadow);
    border-right: 1px solid var(--win98-highlight);
    border-bottom: 1px solid var(--win98-highlight);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.thought-item:hover {
    background: var(--win98-blue);
    color: white;
}

.thought-item:hover .thought-title,
.thought-item:hover .thought-date {
    color: white;
}

.thought-title {
    font-family: var(--win98-font);
    font-size: 14px;
    color: #000080;
}

.thought-date {
    font-family: var(--win98-font);
    font-size: 12px;
    color: #666;
}

.thought-detail {
    padding: 15px;
    background: white;
    height: 100%;
}

.thought-header {
    border-bottom: 1px solid #808080;
    padding-bottom: 12px;
}

.thought-header h2 {
    margin: 10px 0;
    font-size: 16px;
    color: #000080;
}

.back-button {
    padding: 4px 8px;
    font-family: var(--win98-font);
    background: var(--win98-bg);
    border-top: 1px solid var(--win98-highlight);
    border-left: 1px solid var(--win98-highlight);
    border-right: 1px solid var(--win98-shadow);
    border-bottom: 1px solid var(--win98-shadow);
    cursor: pointer;
    font-size: 12px;
}

.back-button:hover {
    background: #d4d0c8;
}

.back-button:active {
    border-top: 1px solid var(--win98-shadow);
    border-left: 1px solid var(--win98-shadow);
    border-right: 1px solid var(--win98-highlight);
    border-bottom: 1px solid var(--win98-highlight);
}

.thought-content {
    font-family: var(--win98-font);
    font-size: 13px;
    line-height: 2;
    white-space: pre-wrap;
}

.thought-content p {
    margin-bottom: 2px;
}
