.list-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.list-container h2 {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-item {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    transition: background-color 0.2s;
}

.content-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.content-item:hover {
    background-color: #f9f9f9;
}

.content-info {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.content-header-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.content-title-row {
    font-size: 1.25em;
    font-weight: 600;
    color: #222;
    /* Slightly darker for more contrast */
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.content-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.content-title-link:hover {
    color: #007bff;
}

.content-actions {
    white-space: nowrap;
    margin-left: 10px;
}

.content-actions a {
    text-decoration: none;
    color: #007bff;
    margin: 0 5px;
    font-family: monospace;
    font-weight: normal;
    font-size: 0.9em;
}

.content-actions a:hover {
    text-decoration: underline;
}

.content-token,
.content-publicity {
    font-family: monospace;
    font-weight: normal;
    background: #f1f3f5;
    padding: 1px 6px;
    border-radius: 4px;
    color: #495057;
    margin-right: 12px;
    font-size: 0.9em;
}

.content-token {
    cursor: pointer;
    transition: all 0.2s;
}

.content-token:hover {
    background: #e9ecef;
    color: #007bff;
}

.content-token.copied {
    background: #70c261ff;
    color: white;
}

.content-time {
    font-family: monospace;
    font-weight: normal;
    color: #999;
    font-size: 0.9em;
}

.empty-list {
    padding: 20px;
    text-align: center;
    color: #888;
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}

.pagination .btn:hover {
    background: #e0e0e0;
}