.deadline-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.84rem;
    cursor: pointer;
}

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

.deadline-icon {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.75rem; color: #fff;
}

/* Allow the text container to shrink so long titles can be truncated. */
.deadline-item > div:last-child {
    min-width: 0;
}

.deadline-name {
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deadline-meta {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
