/* /home/rich/oxxoox/static/css/lists.css */

/* ============================================
   LISTS
   ============================================ */

.list {
    list-style: none;
}

.list-item {
    padding: var(--gap-md);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background: var(--smoke);
}

.list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--gap-xs);
}

.list-item-title {
    font-size: 13px;
    font-weight: 700;
}

.list-item-meta {
    font-size: 11px;
    color: var(--muted);
}

.list-item-description {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* ============================================
   ACTIVITY LIST
   ============================================ */

.activity-list {
    background: var(--smoke);
    border: 1px solid var(--border);
}

.activity-item {
    padding: var(--gap-md);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: var(--gap-md);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--void);
    border: 1px solid var(--border);
    font-size: 14px;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: var(--gap-xs);
}

.activity-time {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
