.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cardAtraso {
    border-color: color-mix(in srgb, #ff4d4f 35%, #f0f0f0) !important;
    background: rgba(255, 77, 79, 0.04);
}

.title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
}

.metaRow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 12px;
    color: var(--text-secondary, rgba(0, 0, 0, 0.65));
}

.progressWrap {
    margin-top: 0;
}

.progressLabel {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
    color: var(--text-secondary, rgba(0, 0, 0, 0.65));
}

.progressBar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progressFill {
    height: 100%;
    transition: width 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .progressFill {
        transition: none;
    }
}

.empty {
    text-align: center;
    padding: 24px 12px;
    color: var(--text-secondary, rgba(0, 0, 0, 0.45));
}
