/* List styles shared across pages */
.email-list,
.item-list {
    list-style: none;
    padding: 0;
}

.email-list li {
    padding: 10px;
    margin: 5px 0;
    background: #f5f5f5;
}

.item-list li {
    padding: 15px;
    margin: 10px 0;
    background: #f5f5f5;
}

.email-list a {
    color: #0066cc;
    text-decoration: none;
    font-family: monospace;
}

.email-list a:hover { 
    text-decoration: underline; 
}

.item-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
}

.item-rank {
    color: #0066cc;
    margin-right: 10px;
    font-weight: bold;
}

.item-body {
    color: #666;
    margin-top: 8px;
    font-size: 0.95em;
}

.item-body a {
    color: #0066cc;
    text-decoration: none;
}

.item-body a:hover {
    text-decoration: underline;
}

.item-meta {
    color: #999;
    font-size: 0.85em;
    margin-top: 8px;
}

/* Mobile responsive list styles */
@media (max-width: 640px) {
    .item-list li {
        padding: 12px;
    }
    .email-list li {
        padding: 10px;
    }
    .item-title {
        font-size: 1em;
    }
}

